X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=inline;f=src%2Fcompiler.lisp;h=381e99f37c33a3200fcc6d6ab2a48a47839773ad;hb=23f9897d635f7d5813eada85ccb4e43203cff7e0;hp=98d90c1111d69352201f6a5f25d3d1e384bf43ff;hpb=226c00ff2e08e8f1d478e5dda3006a6cae8149cd;p=jscl.git diff --git a/src/compiler.lisp b/src/compiler.lisp index 98d90c1..381e99f 100644 --- a/src/compiler.lisp +++ b/src/compiler.lisp @@ -20,6 +20,9 @@ (/debug "loading compiler.lisp!") +(define-js-macro selfcall (&body body) + `(call (function () ,@body))) + ;;; Translate the Lisp code to Javascript. It will compile the special ;;; forms. Some primitive functions are compiled as special forms ;;; too. The respective real functions are defined in the target (see @@ -60,9 +63,6 @@ (defmacro js!selfcall (&body body) ``(call (function nil (code ,,@body)))) -(defmacro js!selfcall* (&body body) - ``(call (function nil ,,@body))) - ;;; Like CODE, but prefix each line with four spaces. Two versions ;;; of this function are available, because the Ecmalisp version is @@ -228,7 +228,7 @@ (flet ((canonicalize (keyarg) ;; Build a canonical keyword argument descriptor, filling ;; the optional fields. The result is a list of the form - ;; ((keyword-name var) init-form). + ;; ((keyword-name var) init-form svar). (let ((arg (ensure-list keyarg))) (cons (if (listp (car arg)) (car arg) @@ -249,11 +249,11 @@ (defun lambda-name/docstring-wrapper (name docstring code) (if (or name docstring) - (js!selfcall* - `(var (func ,code)) - (when name `(= (get func |fname|) ,name)) - (when docstring `(= (get func |docstring|) ,docstring)) - `(return func)) + `(selfcall + (var (func ,code)) + ,(when name `(= (get func "fname") ,name)) + ,(when docstring `(= (get func "docstring") ,docstring)) + (return func)) code)) (defun lambda-check-argument-count @@ -265,50 +265,44 @@ (block nil ;; Special case: a positive exact number of arguments. (when (and (< 0 min) (eql min max)) - (return `(code "checkArgs(nargs, " ,min ");"))) + (return `(call |checkArgs| |nargs| ,min))) ;; General case: - `(code - ,(when (< 0 min) - `(code "checkArgsAtLeast(nargs, " ,min ");")) - ,(when (numberp max) - `(code "checkArgsAtMost(nargs, " ,max ");")))))) + `(progn + ,(when (< 0 min) `(call |checkArgsAtLeast| |nargs| ,min)) + ,(when (numberp max) `(call |checkArgsAtMost| |nargs| ,max)))))) (defun compile-lambda-optional (ll) (let* ((optional-arguments (ll-optional-arguments-canonical ll)) (n-required-arguments (length (ll-required-arguments ll))) (n-optional-arguments (length optional-arguments))) (when optional-arguments - `(code "switch(nargs){" - ,(let ((cases nil) - (idx 0)) - (progn - (while (< idx n-optional-arguments) - (let ((arg (nth idx optional-arguments))) - (push `(code "case " ,(+ idx n-required-arguments) ":" - (code ,(translate-variable (car arg)) - "=" - ,(ls-compile (cadr arg)) ";") - ,(when (third arg) - `(code ,(translate-variable (third arg)) - "=" - ,(ls-compile nil) - ";"))) - cases) - (incf idx))) - (push `(code "default: break;") cases) - `(code ,@(reverse cases)))) - "}")))) + `(switch |nargs| + ,@(with-collect + (dotimes (idx n-optional-arguments) + (let ((arg (nth idx optional-arguments))) + (collect `(case ,(+ idx n-required-arguments))) + (collect `(= ,(make-symbol (translate-variable (car arg))) + ,(ls-compile (cadr arg)))) + (collect (when (third arg) + `(= ,(make-symbol (translate-variable (third arg))) + ,(ls-compile nil)))))) + (collect 'default) + (collect '(break))))))) (defun compile-lambda-rest (ll) (let ((n-required-arguments (length (ll-required-arguments ll))) (n-optional-arguments (length (ll-optional-arguments ll))) (rest-argument (ll-rest-argument ll))) (when rest-argument - (let ((js!rest (translate-variable rest-argument))) - `(code "var " ,js!rest "= " ,(ls-compile nil) ";" - "for (var i = nargs-1; i>=" ,(+ n-required-arguments n-optional-arguments) - "; i--)" - (code ,js!rest " = {car: arguments[i+2], cdr: " ,js!rest "};")))))) + (let ((js!rest (make-symbol (translate-variable rest-argument)))) + `(progn + (var (,js!rest ,(ls-compile nil))) + (var i) + (for ((= i (- |nargs| 1)) + (>= i ,(+ n-required-arguments n-optional-arguments)) + (post-- i)) + (= ,js!rest (object "car" (property |arguments| (+ i 2)) + "cdr" ,js!rest)))))))) (defun compile-lambda-parse-keywords (ll) (let ((n-required-arguments @@ -317,55 +311,62 @@ (length (ll-optional-arguments ll))) (keyword-arguments (ll-keyword-arguments-canonical ll))) - `(code - ;; Declare variables - ,@(mapcar (lambda (arg) - (let ((var (second (car arg)))) - `(code "var " ,(translate-variable var) "; " - ,(when (third arg) - `(code "var " ,(translate-variable (third arg)) - " = " ,(ls-compile nil) - ";" ))))) - keyword-arguments) - ;; Parse keywords - ,(flet ((parse-keyword (keyarg) - ;; ((keyword-name var) init-form) - `(code "for (i=" ,(+ n-required-arguments n-optional-arguments) - "; i= i (get x "length"))) - (throw "Out of range.")) - `(return (= (property x i) ,value)))) + `(selfcall + (var (x ,vector)) + (var (i ,n)) + (if (or (< i 0) (>= i (get x "length"))) + (throw "Out of range.")) + (return (= (property x i) ,value)))) (define-builtin concatenate-storage-vector (sv1 sv2) - (js!selfcall* - `(var (sv1 ,sv1)) - `(var (r (call (get sv1 "concat") ,sv2))) - `(= (get r "type") (get sv1 "type")) - `(= (get r "stringp") (get sv1 "stringp")) - `(return r))) + `(selfcall + (var (sv1 ,sv1)) + (var (r (call (get sv1 "concat") ,sv2))) + (= (get r "type") (get sv1 "type")) + (= (get r "stringp") (get sv1 "stringp")) + (return r))) (define-builtin get-internal-real-time () `(call (get (new (call |Date|)) "getTime"))) (define-builtin values-array (array) (if *multiple-value-p* - `(code "values.apply(this, " ,array ")") - `(code "pv.apply(this, " ,array ")"))) + `(call (get |values| "apply") this ,array) + `(call (get |pv| "apply") this ,array))) (define-raw-builtin values (&rest args) (if *multiple-value-p* - `(code "values(" ,@(interleave (mapcar #'ls-compile args) ",") ")") - `(code "pv(" ,@(interleave (mapcar #'ls-compile args) ", ") ")"))) - + `(call |values| ,@(mapcar #'ls-compile args)) + `(call |pv| ,@(mapcar #'ls-compile args)))) ;;; Javascript FFI @@ -1307,33 +1257,33 @@ '(object)) (define-raw-builtin oget* (object key &rest keys) - (js!selfcall* - `(progn - (var (tmp (get ,(ls-compile object) (call |xstring| ,(ls-compile key))))) - ,@(mapcar (lambda (key) - `(progn - (if (=== tmp undefined) (return ,(ls-compile nil))) - (= tmp (get tmp (call |xstring| ,(ls-compile key)))))) - keys)) - `(return (if (=== tmp undefined) ,(ls-compile nil) tmp)))) + `(selfcall + (progn + (var (tmp (property ,(ls-compile object) (call |xstring| ,(ls-compile key))))) + ,@(mapcar (lambda (key) + `(progn + (if (=== tmp undefined) (return ,(ls-compile nil))) + (= tmp (property tmp (call |xstring| ,(ls-compile key)))))) + keys)) + (return (if (=== tmp undefined) ,(ls-compile nil) tmp)))) (define-raw-builtin oset* (value object key &rest keys) (let ((keys (cons key keys))) - (js!selfcall* - `(progn - (var (obj ,(ls-compile object))) - ,@(mapcar (lambda (key) - `(progn - (= obj (get obj (call |xstring| ,(ls-compile key)))) - (if (=== object undefined) - (throw "Impossible to set object property.")))) - (butlast keys)) - (var (tmp - (= (get obj (call |xstring| ,(ls-compile (car (last keys))))) - ,(ls-compile value)))) - (return (if (=== tmp undefined) - ,(ls-compile nil) - tmp)))))) + `(selfcall + (progn + (var (obj ,(ls-compile object))) + ,@(mapcar (lambda (key) + `(progn + (= obj (property obj (call |xstring| ,(ls-compile key)))) + (if (=== object undefined) + (throw "Impossible to set object property.")))) + (butlast keys)) + (var (tmp + (= (property obj (call |xstring| ,(ls-compile (car (last keys))))) + ,(ls-compile value)))) + (return (if (=== tmp undefined) + ,(ls-compile nil) + tmp)))))) (define-raw-builtin oget (object key &rest keys) `(call |js_to_lisp| ,(ls-compile `(oget* ,object ,key ,@keys)))) @@ -1352,13 +1302,13 @@ (js!bool `(in (call |xstring| ,key) ,object))) (define-builtin map-for-in (function object) - (js!selfcall* - `(var (f ,function) - (g (if (=== (typeof f) "function") f (get f "fvalue"))) - (o ,object)) - `(for-in (key o) - (call g ,(if *multiple-value-p* '|values| '|pv|) 1 (get o "key"))) - `(return ,(ls-compile nil)))) + `(selfcall + (var (f ,function) + (g (if (=== (typeof f) "function") f (get f "fvalue"))) + (o ,object)) + (for-in (key o) + (call g ,(if *multiple-value-p* '|values| '|pv|) 1 (get o "key"))) + (return ,(ls-compile nil)))) (define-compilation %js-vref (var) `(call |js_to_lisp| ,(make-symbol var))) @@ -1474,7 +1424,7 @@ (binding-value b)) ((or (keywordp sexp) (and b (member 'constant (binding-declarations b)))) - `(code ,(ls-compile `',sexp) ".value")) + `(get ,(ls-compile `',sexp) "value")) (t (ls-compile `(symbol-value ',sexp)))))) ((or (integerp sexp) (floatp sexp) (characterp sexp) (stringp sexp) (arrayp sexp))