X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler.lisp;h=a77d4519c1b9d7890fda5728af09503aec21545a;hb=c1243ebc6aaa93fe370ddedbe4bbe1642f0b13e9;hp=a81de2f46705c9690f672bc32076b55d3585ad8e;hpb=81acf0d435f13d0850a0fa48b7502e8b3ea8f2d0;p=jscl.git diff --git a/src/compiler.lisp b/src/compiler.lisp index a81de2f..a77d451 100644 --- a/src/compiler.lisp +++ b/src/compiler.lisp @@ -18,6 +18,8 @@ ;;;; Compiler +(/debug "loading compiler.lisp!") + ;;; 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 @@ -48,7 +50,7 @@ ;;; Wrap X with a Javascript code to convert the result from ;;; Javascript generalized booleans to T or NIL. (defun js!bool (x) - `(code "(" ,x "?" ,(ls-compile t) ": " ,(ls-compile nil) ")")) + `(if ,x ,(ls-compile t) ,(ls-compile nil))) ;;; Concatenate the arguments and wrap them with a self-calling ;;; Javascript anonymous function. It is used to make some Javascript @@ -56,7 +58,11 @@ ;;; It could be defined as function, but we could do some ;;; preprocessing in the future. (defmacro js!selfcall (&body body) - ``(code "(function(){" (code ,,@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 @@ -111,7 +117,7 @@ (defun gvarname (symbol) (declare (ignore symbol)) - `(code "v" ,(incf *variable-counter*))) + (code "v" (incf *variable-counter*))) (defun translate-variable (symbol) (awhen (lookup-in-lexenv symbol *environment* 'variable) @@ -188,10 +194,9 @@ *compilations*)) (define-compilation if (condition true &optional false) - `(code "(" ,(ls-compile condition) " !== " ,(ls-compile nil) - " ? " ,(ls-compile true *multiple-value-p*) - " : " ,(ls-compile false *multiple-value-p*) - ")")) + `(if (!== ,(ls-compile condition) ,(ls-compile nil)) + ,(ls-compile true *multiple-value-p*) + ,(ls-compile false *multiple-value-p*))) (defvar *ll-keywords* '(&optional &rest &key)) @@ -241,16 +246,14 @@ (ll-optional-arguments-canonical lambda-list)))) (remove nil (mapcar #'third args)))) -(defun lambda-name/docstring-wrapper (name docstring &rest code) +(defun lambda-name/docstring-wrapper (name docstring code) (if (or name docstring) - (js!selfcall - "var func = " `(code ,code) ";" - (when name - `(code "func.fname = " ,(js-escape-string name) ";")) - (when docstring - `(code "func.docstring = " ,(js-escape-string docstring) ";")) - "return func;") - `(code ,@code))) + (js!selfcall* + `(var (func ,code)) + (when name `(= (get func |fname|) ,name)) + (when docstring `(= (get func |docstring|) ,docstring)) + `(return func)) + `(code ,code))) (defun lambda-check-argument-count (n-required-arguments n-optional-arguments rest-p) @@ -327,43 +330,40 @@ ,(flet ((parse-keyword (keyarg) ;; ((keyword-name var) init-form) `(code "for (i=" ,(+ n-required-arguments n-optional-arguments) - "; i ">") -(define-builtin-comparison < "<") -(define-builtin-comparison >= ">=") -(define-builtin-comparison <= "<=") -(define-builtin-comparison = "==") -(define-builtin-comparison /= "!=") +(define-builtin-comparison > >) +(define-builtin-comparison < <) +(define-builtin-comparison >= >=) +(define-builtin-comparison <= <=) +(define-builtin-comparison = ==) +(define-builtin-comparison /= !=) (define-builtin numberp (x) - (js!bool `(code "(typeof (" ,x ") == \"number\")"))) + (js!bool `(== (typeof ,x) "number"))) (define-builtin floor (x) (type-check (("x" "number" x)) @@ -1095,27 +1086,27 @@ "make_lisp_string(x.toString())")) (define-builtin cons (x y) - (code "({car: " x ", cdr: " y "})")) + `(object "car" ,x "cdr" ,y)) (define-builtin consp (x) (js!bool (js!selfcall - "var tmp = " x ";" + "var tmp = " x ";" "return (typeof tmp == 'object' && 'car' in tmp);" ))) (define-builtin car (x) - (js!selfcall - "var tmp = " x ";" - "return tmp === " (ls-compile nil) - "? " (ls-compile nil) - ": tmp.car;" )) + (js!selfcall* + `(var (tmp ,x)) + `(return (if (=== tmp ,(ls-compile nil)) + ,(ls-compile nil) + (get tmp "car"))))) (define-builtin cdr (x) - (js!selfcall - "var tmp = " x ";" - "return tmp === " (ls-compile nil) "? " - (ls-compile nil) - ": tmp.cdr;" )) + (js!selfcall* + `(var (tmp ,x)) + `(return (if (=== tmp ,(ls-compile nil)) + ,(ls-compile nil) + (get tmp "cdr"))))) (define-builtin rplaca (x new) (type-check (("x" "object" x)) @@ -1126,48 +1117,50 @@ `(code "(x.cdr = " ,new ", x)"))) (define-builtin symbolp (x) - (js!bool `(code "(" ,x " instanceof Symbol)"))) + (js!bool `(instanceof ,x |Symbol|))) (define-builtin make-symbol (name) - `(code "(new Symbol(" ,name "))")) + `(new (call |Symbol| ,name))) (define-builtin symbol-name (x) - `(code "(" ,x ").name")) + `(get ,x "name")) (define-builtin set (symbol value) - `(code "(" ,symbol ").value = " ,value)) + `(= (get ,symbol "value") ,value)) (define-builtin fset (symbol value) - `(code "(" ,symbol ").fvalue = " ,value)) + `(= (get ,symbol "fvalue") ,value)) (define-builtin boundp (x) - (js!bool `(code "(" ,x ".value !== undefined)"))) + (js!bool `(!== (get ,x "value") undefined))) (define-builtin fboundp (x) - (js!bool `(code "(" ,x ".fvalue !== undefined)"))) + (js!bool `(!== (get ,x "fvalue") undefined))) (define-builtin symbol-value (x) - (js!selfcall - "var symbol = " x ";" - "var value = symbol.value;" - "if (value === undefined) throw \"Variable `\" + xstring(symbol.name) + \"' is unbound.\";" - "return value;" )) + (js!selfcall* + `(var (symbol ,x) + (value (get symbol "value"))) + `(if (=== value undefined) + (throw (+ "Variable `" (call |xstring| (get symbol "name")) "' is unbound."))) + `(return value))) (define-builtin symbol-function (x) - (js!selfcall - "var symbol = " x ";" - "var func = symbol.fvalue;" - "if (func === undefined) throw \"Function `\" + xstring(symbol.name) + \"' is undefined.\";" - "return func;" )) + (js!selfcall* + `(var (symbol ,x) + (func (get symbol "fvalue"))) + `(if (=== func undefined) + (throw (+ "Function `" (call |xstring| (get symbol "name")) "' is undefined."))) + `(return func))) (define-builtin symbol-plist (x) - `(code "((" ,x ").plist || " ,(ls-compile nil) ")")) + `(or (get ,x "plist") ,(ls-compile nil))) (define-builtin lambda-code (x) - `(code "make_lisp_string((" ,x ").toString())")) + `(call |make_lisp_string| (call (get ,x "toString")))) (define-builtin eq (x y) - (js!bool `(code "(" ,x " === " ,y ")"))) + (js!bool `(=== ,x ,y))) (define-builtin char-code (x) (type-check (("x" "string" x)) @@ -1180,24 +1173,26 @@ (define-builtin characterp (x) (js!bool (js!selfcall - "var x = " x ";" + "var x = " x ";" "return (typeof(" x ") == \"string\") && (x.length == 1 || x.length == 2);"))) (define-builtin char-upcase (x) - `(code "safe_char_upcase(" ,x ")")) + `(call |safe_char_upcase| ,x)) (define-builtin char-downcase (x) - `(code "safe_char_downcase(" ,x ")")) + `(call |safe_char_downcase| ,x)) (define-builtin stringp (x) (js!bool - (js!selfcall - "var x = " x ";" - "return typeof(x) == 'object' && 'length' in x && x.stringp == 1;"))) + (js!selfcall* + `(var (x ,x)) + `(return (and (and (===(typeof x) "object") + (in "length" x)) + (== (get x "stringp") 1)))))) (define-raw-builtin funcall (func &rest args) (js!selfcall - "var f = " (ls-compile func) ";" + "var f = " (ls-compile func) ";" "return (typeof f === 'function'? f: f.fvalue)(" `(code ,@(interleave (list* (if *multiple-value-p* "values" "pv") @@ -1212,36 +1207,39 @@ (let ((args (butlast args)) (last (car (last args)))) (js!selfcall - "var f = " (ls-compile func) ";" + "var f = " (ls-compile func) ";" "var args = [" `(code ,@(interleave (list* (if *multiple-value-p* "values" "pv") (integer-to-string (length args)) (mapcar #'ls-compile args)) ", ")) - "];" - "var tail = (" (ls-compile last) ");" - "while (tail != " (ls-compile nil) "){" - " args.push(tail.car);" - " args[1] += 1;" - " tail = tail.cdr;" - "}" + "];" + "var tail = (" (ls-compile last) ");" + "while (tail != " (ls-compile nil) "){" + " args.push(tail.car);" + " args[1] += 1;" + " tail = tail.cdr;" + "}" "return (typeof f === 'function'? f : f.fvalue).apply(this, args);" )))) (define-builtin js-eval (string) (if *multiple-value-p* - (js!selfcall - "var v = globalEval(xstring(" string "));" - "return values.apply(this, forcemv(v));" ) - `(code "globalEval(xstring(" ,string "))"))) + (js!selfcall* + `(var (v (call |globalEval| (call |xstring| ,string)))) + `(return (call (get |values| "apply") this (call |forcemv| v)))) + `(call |globalEval| (call |xstring| ,string)))) (define-builtin %throw (string) - (js!selfcall "throw " string ";" )) + (js!selfcall* `(throw ,string))) (define-builtin functionp (x) - (js!bool `(code "(typeof " ,x " == 'function')"))) + (js!bool `(=== (typeof ,x) "function"))) (define-builtin %write-string (x) - `(code "lisp.write(" ,x ")")) + `(call (get |lisp| "write") ,x)) + +(define-builtin /debug (x) + `(call (get |console| "log") (call |xstring| ,x))) ;;; Storage vectors. They are used to implement arrays and (in the @@ -1249,45 +1247,46 @@ (define-builtin storage-vector-p (x) (js!bool - (js!selfcall - "var x = " x ";" - "return typeof x === 'object' && 'length' in x;"))) + (js!selfcall* + `(var (x ,x)) + `(return (and (=== (typeof x) "object") (in "length" x)))))) (define-builtin make-storage-vector (n) - (js!selfcall - "var r = [];" - "r.length = " n ";" - "return r;" )) + (js!selfcall* + `(var (r #())) + `(= (get r "length") ,n) + `(return r))) (define-builtin storage-vector-size (x) - `(code ,x ".length")) + `(get ,x "length")) (define-builtin resize-storage-vector (vector new-size) - `(code "(" ,vector ".length = " ,new-size ")")) + `(= (get ,vector "length") ,new-size)) (define-builtin storage-vector-ref (vector n) - (js!selfcall - "var x = " "(" vector ")[" n "];" - "if (x === undefined) throw 'Out of range';" - "return x;" )) + (js!selfcall* + `(var (x (get ,vector ,n))) + `(if (=== x undefined) (throw "Out of range.")) + `(return x))) (define-builtin storage-vector-set (vector n value) - (js!selfcall - "var x = " vector ";" - "var i = " n ";" - "if (i < 0 || i >= x.length) throw 'Out of range';" - "return x[i] = " value ";" )) + (js!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 = sv1.concat(" sv2 ");" - "r.type = sv1.type;" - "r.stringp = sv1.stringp;" - "return r;" )) + (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))) (define-builtin get-internal-real-time () - "(new Date()).getTime()") + `(call (get (new (call Date)) "getTime"))) (define-builtin values-array (array) (if *multiple-value-p* @@ -1302,14 +1301,15 @@ ;;; Javascript FFI -(define-builtin new () "{}") +(define-builtin new () + '(object)) (define-raw-builtin oget* (object key &rest keys) (js!selfcall - "var tmp = (" (ls-compile object) ")[xstring(" (ls-compile key) ")];" + "var tmp = (" (ls-compile object) ")[xstring(" (ls-compile key) ")];" `(code ,@(mapcar (lambda (key) - `(code "if (tmp === undefined) return " ,(ls-compile nil) ";" + `(code "if (tmp === undefined) return " ,(ls-compile nil) ";" "tmp = tmp[xstring(" ,(ls-compile key) ")];" )) keys)) "return tmp === undefined? " (ls-compile nil) " : tmp;" )) @@ -1317,36 +1317,36 @@ (define-raw-builtin oset* (value object key &rest keys) (let ((keys (cons key keys))) (js!selfcall - "var obj = " (ls-compile object) ";" + "var obj = " (ls-compile object) ";" `(code ,@(mapcar (lambda (key) `(code "obj = obj[xstring(" ,(ls-compile key) ")];" "if (obj === undefined) throw 'Impossible to set Javascript property.';" )) (butlast keys))) - "var tmp = obj[xstring(" (ls-compile (car (last keys))) ")] = " (ls-compile value) ";" + "var tmp = obj[xstring(" (ls-compile (car (last keys))) ")] = " (ls-compile value) ";" "return tmp === undefined? " (ls-compile nil) " : tmp;" ))) (define-raw-builtin oget (object key &rest keys) - `(code "js_to_lisp(" ,(ls-compile `(oget* ,object ,key ,@keys)) ")")) + `(call |js_to_lisp| ,(ls-compile `(oget* ,object ,key ,@keys)))) (define-raw-builtin oset (value object key &rest keys) (ls-compile `(oset* (lisp-to-js ,value) ,object ,key ,@keys))) (define-builtin objectp (x) - (js!bool `(code "(typeof (" ,x ") === 'object')"))) + (js!bool `(=== (typeof ,x) "object"))) -(define-builtin lisp-to-js (x) `(code "lisp_to_js(" ,x ")")) -(define-builtin js-to-lisp (x) `(code "js_to_lisp(" ,x ")")) +(define-builtin lisp-to-js (x) `(call |lisp_to_js| ,x)) +(define-builtin js-to-lisp (x) `(call |js_to_lisp| ,x)) (define-builtin in (key object) - (js!bool `(code "(xstring(" ,key ") in (" ,object "))"))) + (js!bool `(in (call |xstring| ,key) ,object))) (define-builtin map-for-in (function object) (js!selfcall - "var f = " function ";" - "var g = (typeof f === 'function' ? f : f.fvalue);" - "var o = " object ";" - "for (var key in o){" + "var f = " function ";" + "var g = (typeof f === 'function' ? f : f.fvalue);" + "var o = " object ";" + "for (var key in o){" `(code "g(" ,(if *multiple-value-p* "values" "pv") ", 1, o[key]);" ) "}" " return " (ls-compile nil) ";" )) @@ -1447,13 +1447,14 @@ `(code ,(ls-compile-block (butlast sexps) nil decls-allowed-p) "return " ,(ls-compile (car (last sexps)) *multiple-value-p*) ";") `(code - ,@(mapcar #'ls-compile sexps) - ";")))) + ,@(interleave (mapcar #'ls-compile sexps) "; +" *newline*) + ";" ,*newline*)))) -(defun ls-compile (sexp &optional multiple-value-p) +(defun ls-compile* (sexp &optional multiple-value-p) (multiple-value-bind (sexp expandedp) (!macroexpand-1 sexp) (when expandedp - (return-from ls-compile (ls-compile sexp multiple-value-p))) + (return-from ls-compile* (ls-compile sexp multiple-value-p))) ;; The expression has been macroexpanded. Now compile it! (let ((*multiple-value-p* multiple-value-p)) (cond @@ -1487,6 +1488,9 @@ (t (error "How should I compile `~S'?" sexp)))))) +(defun ls-compile (sexp &optional multiple-value-p) + `(code "(" ,(ls-compile* sexp multiple-value-p) ")")) + (defvar *compile-print-toplevels* nil) @@ -1495,20 +1499,27 @@ (min width (length string))))) (subseq string 0 n))) -(defun ls-compile-toplevel (sexp &optional multiple-value-p) +(defun convert-toplevel (sexp &optional multiple-value-p) (let ((*toplevel-compilations* nil)) (cond - ((and (consp sexp) (eq (car sexp) 'progn)) - (let ((subs (mapcar (lambda (s) - (ls-compile-toplevel s t)) - (cdr sexp)))) - (join subs))) + ;; Non-empty toplevel progn + ((and (consp sexp) + (eq (car sexp) 'progn) + (cdr sexp)) + `(progn + ,@(mapcar (lambda (s) (convert-toplevel s t)) + (cdr sexp)))) (t (when *compile-print-toplevels* (let ((form-string (prin1-to-string sexp))) (format t "Compiling ~a..." (truncate-string form-string)))) (let ((code (ls-compile sexp multiple-value-p))) `(code - ,@(interleave (get-toplevel-compilations) ";" t) + ,@(interleave (get-toplevel-compilations) "; +" t) ,(when code - `(code ,code ";")))))))) + `(code ,code ";")))))))) + +(defun ls-compile-toplevel (sexp &optional multiple-value-p) + (with-output-to-string (*standard-output*) + (js (convert-toplevel sexp multiple-value-p))))