1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-18 02:00:40 +03:00
mal/impls/elisp/step4_if_fn_do.el
Nicolas Boulenguez 033892777a Merge eval-ast and macro expansion into EVAL, add DEBUG-EVAL
See issue #587.
* Merge eval-ast and eval into a single conditional.
* Expand macros during the apply phase, removing lots of duplicate
  tests, and increasing the overall consistency by allowing the macro
  to be computed instead of referenced by name (`((defmacro! cond
  (...)))` is currently illegal for example).
* Print "EVAL: $ast" at the top of EVAL if DEBUG-EVAL exists in the
  MAL environment.
* Remove macroexpand and quasiquoteexpand special forms.
* Use pattern-matching style in process/step*.txt.

Unresolved issues:
c.2: unable to reproduce with gcc 11.12.0.
elm: the directory is unchanged.
groovy: sometimes fail, but not on each rebuild.
nasm: fails some new soft tests, but the issue is unreproducible when
  running the interpreter manually.
objpascal: unreproducible with fpc 3.2.2.
ocaml: unreproducible with 4.11.1.
perl6: unreproducible with rakudo 2021.09.

Unrelated changes:
Reduce diff betweens steps.
Prevent defmacro! from mutating functions: c forth logo miniMAL vb.
dart: fix recent errors and warnings
ocaml: remove metadata from symbols.

Improve the logo implementation.
Encapsulate all representation in types.lg and env.lg, unwrap numbers.
Replace some manual iterations with logo control structures.
Reduce the diff between steps.
Use native iteration in env_get and env_map
Rewrite the reader with less temporary strings.
Reduce the number of temporary lists (for example, reverse iteration
with butlast requires O(n^2) allocations).
It seems possible to remove a few exceptions: GC settings
(Dockerfile), NO_SELF_HOSTING (IMPLS.yml) and step5_EXCLUDES
(Makefile.impls) .
2024-08-05 11:40:49 -05:00

135 lines
3.9 KiB
EmacsLisp

;; -*- lexical-binding: t; -*-
(require 'mal/types)
(require 'mal/env)
(require 'mal/reader)
(require 'mal/printer)
(require 'mal/core)
(defvar repl-env (mal-env))
(dolist (binding core-ns)
(let ((symbol (car binding))
(fn (cdr binding)))
(mal-env-set repl-env symbol fn)))
(defun READ (input)
(read-str input))
(defun EVAL (ast env)
(let ((dbgeval (mal-env-get env 'DEBUG-EVAL)))
(if (and dbgeval
(not (member (mal-type dbgeval) '(false nil))))
(println "EVAL: %s\n" (PRINT ast))))
(cl-case (mal-type ast)
(list
(let* ((a (mal-value ast))
(a1 (cadr a))
(a2 (nth 2 a))
(a3 (nth 3 a)))
(if a
(cl-case (mal-value (car a))
(def!
(let ((identifier (mal-value a1))
(value (EVAL a2 env)))
(mal-env-set env identifier value)))
(let*
(let ((env* (mal-env env))
(bindings (mal-listify a1))
(form a2))
(while bindings
(let ((key (mal-value (pop bindings)))
(value (EVAL (pop bindings) env*)))
(mal-env-set env* key value)))
(EVAL form env*)))
(do
(let* ((a0... (cdr a))
(butlast (butlast a0...))
(last (car (last a0...))))
(mapcar (lambda (item) (EVAL item env)) butlast)
(EVAL last env)))
(if
(let* ((condition (EVAL a1 env))
(condition-type (mal-type condition))
(then a2)
(else a3))
(if (and (not (eq condition-type 'false))
(not (eq condition-type 'nil)))
(EVAL then env)
(if else
(EVAL else env)
mal-nil))))
(fn*
(let ((binds (mapcar 'mal-value (mal-value a1)))
(body a2))
(mal-fn
(lambda (&rest args)
(let ((env* (mal-env env binds args)))
(EVAL body env*))))))
(t
;; not a special form
(let ((fn* (mal-value (EVAL (car a) env)))
(args (mapcar (lambda (x) (EVAL x env)) (cdr a))))
(apply fn* args))))
ast)))
(symbol
(let ((key (mal-value ast)))
(or (mal-env-get env key)
(error "'%s' not found" key))))
(vector
(mal-vector (vconcat (mapcar (lambda (item) (EVAL item env))
(mal-value ast)))))
(map
(let ((map (copy-hash-table (mal-value ast))))
(maphash (lambda (key val)
(puthash key (EVAL val env) map))
map)
(mal-map map)))
(t
;; return as is
ast)))
(defun PRINT (input)
(pr-str input t))
(defun rep (input)
(PRINT (EVAL (READ input) repl-env)))
(rep "(def! not (fn* (a) (if a false true)))")
(defun readln (prompt)
;; C-d throws an error
(ignore-errors (read-from-minibuffer prompt)))
(defun println (format-string &rest args)
(if (not args)
(princ format-string)
(princ (apply 'format format-string args)))
(terpri))
(defun main ()
(let (eof)
(while (not eof)
(let ((input (readln "user> ")))
(if input
(condition-case err
(println (rep input))
(end-of-token-stream
;; empty input, carry on
)
(unterminated-sequence
(princ (format "Expected '%c', got EOF\n"
(cl-case (cadr err)
(string ?\")
(list ?\))
(vector ?\])
(map ?})))))
(error ; catch-all
(println (error-message-string err))))
(setq eof t)
;; print final newline
(terpri))))))
(main)