1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-17 17:50:24 +03:00
mal/impls/fsharp/stepA_mal.fs
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

246 lines
9.0 KiB
Forth

module REPL
open System
open Node
open Types
let rec iterPairs f = function
| Pair(first, second, t) ->
f first second
iterPairs f t
| Empty -> ()
| _ -> raise <| Error.errExpectedX "list or vector"
let rec qqLoop elt acc =
match elt with
| List(_, [Symbol("splice-unquote");list]) -> makeList [Symbol "concat"; list; acc]
| List(_, Symbol("splice-unquote")::_) -> raise <| Error.wrongArity ()
| _ -> makeList [Symbol "cons"; quasiquote elt; acc]
and quasiquote = function
| List(_, [Symbol("unquote");form]) -> form
| List(_, Symbol("unquote")::_) -> raise <| Error.wrongArity ()
| List (_, list) -> List.foldBack qqLoop list Node.EmptyLIST
| Vector(_, segment) ->
let array = Array.sub segment.Array segment.Offset segment.Count
let folded = Array.foldBack qqLoop array Node.EmptyLIST
makeList [Symbol "vec"; folded]
| Map(_) as ast -> makeList [Symbol "quote"; ast]
| Symbol(_) as ast -> makeList [Symbol "quote"; ast]
| ast -> ast
let quoteForm = function
| [node] -> node
| _ -> raise <| Error.wrongArity ()
let rec defBangForm env = function
| [sym; form] ->
match sym with
| Symbol(sym) ->
let node = eval env form
Env.set env sym node
node
| _ -> raise <| Error.errExpectedX "symbol"
| _ -> raise <| Error.wrongArity ()
and defMacroForm env = function
| [sym; form] ->
match sym with
| Symbol(sym) ->
let node = eval env form
match node with
| Func(_, _, f, body, binds, outer) ->
let node = Env.makeMacro f body binds outer
Env.set env sym node
node
| _ -> raise <| Error.errExpectedX "user defined func"
| _ -> raise <| Error.errExpectedX "symbol"
| _ -> raise <| Error.wrongArity ()
and setBinding env first second =
let s = match first with
| Symbol(s) -> s
| _ -> raise <| Error.errExpectedX "symbol"
let form = eval env second
Env.set env s form
and letStarForm outer = function
| [bindings; form] ->
let inner = Env.makeNew outer [] []
let binder = setBinding inner
match bindings with
| List(_) | Vector(_) -> iterPairs binder bindings
| _ -> raise <| Error.errExpectedX "list or vector"
inner, form
| _ -> raise <| Error.wrongArity ()
and ifForm env = function
| [condForm; trueForm; falseForm] -> ifForm3 env condForm trueForm falseForm
| [condForm; trueForm] -> ifForm3 env condForm trueForm Nil
| _ -> raise <| Error.wrongArity ()
and ifForm3 env condForm trueForm falseForm =
match eval env condForm with
| Bool(false) | Nil -> falseForm
| _ -> trueForm
and doForm env = function
| [a] -> a
| a::rest ->
eval env a |> ignore
doForm env rest
| _ -> raise <| Error.wrongArity ()
and fnStarForm outer nodes =
let makeFunc binds body =
let f = fun nodes ->
let inner = Env.makeNew outer binds nodes
eval inner body
Env.makeFunc f body binds outer
match nodes with
| [List(_, binds); body] -> makeFunc binds body
| [Vector(_, seg); body] -> makeFunc (List.ofSeq seg) body
| [_; _] -> raise <| Error.errExpectedX "bindings of list or vector"
| _ -> raise <| Error.wrongArity ()
and catchForm env err = function
| List(_, [Symbol("catch*"); Symbol(_) as sym; catchBody]) ->
let inner = Env.makeNew env [sym] [err]
catchBody |> eval inner
| List(_, [_; _; _]) -> raise <| Error.argMismatch ()
| _ -> raise <| Error.wrongArity ()
and tryForm env = function
| [exp] ->
eval env exp
| [exp; catchClause] ->
try
eval env exp
with
| Error.EvalError(str)
| Error.ReaderError(str) -> catchForm env (String(str)) catchClause
| Error.MalError(node) -> catchForm env node catchClause
| _ -> raise <| Error.wrongArity ()
and eval env ast =
ignore <| match Env.get env "DEBUG-EVAL" with
| None | Some(Bool(false)) | Some(Nil) -> ()
| _ -> Printer.pr_str [ast] |> printfn "EVAL: %s"
match ast with
| Symbol(sym) -> match Env.get env sym with
| Some(value) -> value
| None -> Error.symbolNotFound sym |> raise
| Vector(_, seg) -> seg |> Seq.map (eval env) |> Array.ofSeq |> Node.ofArray
| Map(_, map) -> map |> Map.map (fun k v -> eval env v) |> makeMap
| List(_, Symbol("def!")::rest) -> defBangForm env rest
| List(_, Symbol("defmacro!")::rest) -> defMacroForm env rest
| List(_, Symbol("let*")::rest) ->
let inner, form = letStarForm env rest
form |> eval inner
| List(_, Symbol("if")::rest) -> ifForm env rest |> eval env
| List(_, Symbol("do")::rest) -> doForm env rest |> eval env
| List(_, Symbol("fn*")::rest) -> fnStarForm env rest
| List(_, Symbol("quote")::rest) -> quoteForm rest
| List(_, [Symbol("quasiquote");form]) -> eval env <| quasiquote form
| List(_, Symbol("quasiquote")::_) -> raise <| Error.wrongArity ()
| List(_, Symbol("try*")::rest) -> tryForm env rest
| List(_, (a0 :: args)) ->
match eval env a0 with
| Macro(_, _, f, _, _, _) -> f args |> eval env
| BuiltInFunc(_, _, f) -> List.map (eval env) args |> f
| Func(_, _, _, body, binds, outer) ->
let inner = List.map (eval env) args |> Env.makeNew outer binds
body |> eval inner
| _ -> raise <| Error.errExpectedX "func"
| _ -> ast
let READ input =
Reader.read_str input
let EVAL env ast =
Some(eval env ast)
let PRINT v =
v
|> Seq.singleton
|> Printer.pr_str
|> printfn "%s"
let RE env input =
READ input
|> Seq.ofList
|> Seq.choose (fun form -> EVAL env form)
let REP env input =
input
|> RE env
|> Seq.iter (fun value -> PRINT value)
let getReadlineMode args =
if args |> Array.exists (fun e -> e = "--raw") then
Readline.Mode.Raw
else
Readline.Mode.Terminal
let eval_func env = function
| [ast] -> eval env ast
| _ -> raise <| Error.wrongArity ()
let argv_func = function
| file::rest -> rest |> List.map Types.String |> makeList
| [] -> EmptyLIST
let readline_func mode = function
| [String(prompt)] ->
match Readline.read prompt mode with
| null -> Node.NIL
| input -> String(input)
| [_] -> raise <| Error.argMismatch ()
| _ -> raise <| Error.wrongArity ()
let configureEnv args mode =
let env = Env.makeRootEnv ()
Env.set env "eval" <| Env.makeBuiltInFunc (eval_func env)
Env.set env "*ARGV*" <| argv_func args
Env.set env "readline" <| Env.makeBuiltInFunc (readline_func mode)
RE env """
(def! *host-language* "fsharp")
(def! not (fn* (a) (if a false true)))
(def! load-file (fn* (f) (eval (read-string (str "(do " (slurp f) "\nnil)")))))
(defmacro! cond (fn* (& xs) (if (> (count xs) 0) (list 'if (first xs) (if (> (count xs) 1) (nth xs 1) (throw "odd number of forms to cond")) (cons 'cond (rest (rest xs)))))))
""" |> Seq.iter ignore
env
[<EntryPoint>]
let main args =
let mode = getReadlineMode args
let args = Seq.ofArray args |> Seq.filter (fun e -> e <> "--raw") |> List.ofSeq
let env = configureEnv args mode
match args with
| file::_ ->
System.IO.File.ReadAllText file
|> RE env |> Seq.iter ignore
0
| _ ->
RE env "(println (str \"Mal [\" *host-language* \"]\"))" |> Seq.iter ignore
let rec loop () =
match Readline.read "user> " mode with
| null -> 0
| input ->
try
REP env input
with
| Error.EvalError(str)
| Error.ReaderError(str) ->
printfn "Error: %s" str
| Error.MalError(node) ->
printfn "Error: %s" (Printer.pr_str [node])
| ex ->
printfn "Error: %s" (ex.Message)
loop ()
loop ()