ce/eval.ml

376 lines
9.2 KiB
OCaml
Raw Normal View History

2022-01-10 01:31:47 +09:00
open Ast
2022-02-08 00:46:43 +09:00
2022-02-08 16:05:33 +09:00
(* resulting value of eval *)
2022-02-08 00:46:43 +09:00
type value =
2022-02-24 19:57:26 +09:00
| Unit
2022-02-08 00:46:43 +09:00
| Int of int
| Float of float
2022-02-08 16:05:33 +09:00
| Bool of bool
2022-02-08 00:46:43 +09:00
| String of string
| Symbol of string
2022-02-22 17:01:39 +09:00
(* (name), bound variables, expression, environment *)
| Function of string option * string list * expr * env
2022-02-08 00:46:43 +09:00
| External of string
and expr = Ast.t
2022-02-08 16:05:33 +09:00
(* environment for eval *)
2022-02-21 02:15:51 +09:00
and env = Env of (string * value) list
2022-02-08 00:46:43 +09:00
2022-02-19 20:39:50 +09:00
(* TODO: add proper type system *)
2022-02-08 00:46:43 +09:00
module Type = struct
type t =
2022-02-24 19:57:26 +09:00
| Unit
2022-02-08 00:46:43 +09:00
| Int
| Float
2022-02-08 16:05:33 +09:00
| Bool
2022-02-08 00:46:43 +09:00
| String
| Symbol
| Function
| External
2022-02-24 02:31:29 +09:00
| Any
2022-02-08 00:46:43 +09:00
2022-02-08 01:00:31 +09:00
exception Invalid of t
2022-02-08 22:02:00 +09:00
exception Expected of t
2022-02-08 01:00:31 +09:00
2022-02-08 00:46:43 +09:00
let to_string = function
2022-02-24 19:57:26 +09:00
| Unit -> "unit"
2022-02-08 00:46:43 +09:00
| Int -> "int"
| Float -> "float"
2022-02-08 16:05:33 +09:00
| Bool -> "bool"
2022-02-08 00:46:43 +09:00
| String -> "string"
| Symbol -> "symbol"
| Function -> "fun"
| External -> "external"
2022-02-24 02:31:29 +09:00
| Any -> "any"
2022-02-08 00:46:43 +09:00
let supertype = function
| Int -> Some Float
| _ -> None
2022-02-24 02:31:29 +09:00
let matches : t -> t -> bool = function
| Any -> Fun.const true
| t -> fun o -> o = t || o = Any
2022-02-08 00:46:43 +09:00
end
module Value = struct
type t = value
let to_string = function
2022-02-24 19:57:26 +09:00
| Unit -> "()"
2022-02-08 00:46:43 +09:00
| Int n -> string_of_int n
| Float n -> string_of_float n
2022-02-08 16:05:33 +09:00
| Bool b -> string_of_bool b
2022-02-08 00:46:43 +09:00
| String s -> "\"" ^ s ^ "\""
2022-02-21 02:18:42 +09:00
| Symbol s -> "#" ^ s
| Function _ -> "<fun>"
2022-02-08 00:46:43 +09:00
| External f -> "external " ^ f
let typeof = function
2022-02-24 19:57:26 +09:00
| Unit -> Type.Unit
| Int _ -> Int
| Float _ -> Float
| Bool _ -> Bool
| String _ -> String
| Symbol _ -> Symbol
| Function _ -> Function
| External _ -> External
2022-02-08 00:46:43 +09:00
let promote = function
| Int n -> Float (float n)
| _ -> failwith "Value.promote"
end
module Env = struct
type t = env
2022-02-21 02:15:51 +09:00
let empty = Env []
2022-02-08 00:46:43 +09:00
2022-02-21 02:15:51 +09:00
let get_opt (Env e) name =
2022-02-12 03:18:00 +09:00
List.assoc_opt name e
2022-02-08 00:46:43 +09:00
2022-02-21 02:15:51 +09:00
let bind v (Env e) =
Env (v::e)
2022-02-08 00:46:43 +09:00
2022-02-21 02:15:51 +09:00
let bind_seq seq (Env e) =
Env (List.of_seq seq @ e)
2022-02-08 00:46:43 +09:00
end
2022-01-10 01:31:47 +09:00
2022-02-24 02:31:29 +09:00
(* primitive methods *)
module Primitive = struct
2022-02-07 23:12:11 +09:00
let negate = function
| [Int n] -> Int ~-n
| [Float n] -> Float ~-.n
2022-02-07 23:12:11 +09:00
| _ -> failwith "Operator.negate"
let vi f = function
| [Int a; Int b] -> Int (f a b)
2022-02-08 01:00:31 +09:00
| _ -> raise @@ Type.Invalid Int
2022-02-07 23:12:11 +09:00
let vf f = function
| [Float a; Float b] -> Float (f a b)
2022-02-08 22:02:00 +09:00
| _ -> raise @@ Type.Expected Float
2022-02-07 23:12:11 +09:00
let compare = function
| [Int a; Int b] -> Int.compare a b
| [Float a; Float b] -> Float.compare a b
| [Bool a; Bool b] -> Bool.compare a b
| [String a; String b] -> String.compare a b
| [Symbol a; Symbol b] -> String.compare a b
2022-02-08 22:02:00 +09:00
| _ -> invalid_arg "Operator.compare"
let eq vs = Bool (compare vs = 0)
let neq vs = Bool (compare vs <> 0)
let ge vs = Bool (compare vs >= 0)
let le vs = Bool (compare vs <= 0)
let gt vs = Bool (compare vs > 0)
let lt vs = Bool (compare vs < 0)
2022-02-08 22:02:00 +09:00
2022-02-08 00:46:43 +09:00
let rad r =
r *. 180. /. Float.pi
let deg d =
d /. 180. *. Float.pi
2022-02-24 02:31:29 +09:00
let floatfun f =
[Type.Float],
function
| [Float n] -> Float (f n)
| _ -> invalid_arg "External.floatfun"
2022-02-08 00:46:43 +09:00
let symbol_to_op op =
op
|> String.to_seqi
|> Lex.find_token
|> Option.get
|> fst
|> Parser.token_to_op
let set_op_pre = function
| [Symbol op; Int l] ->
let op = symbol_to_op op in
Hashtbl.replace Parser.precedence op l;
2022-02-24 19:57:26 +09:00
Unit
| _ -> failwith "set_op_pre"
let get_op_pre = function
| [Symbol op] ->
let op = symbol_to_op op in
Int (Hashtbl.find Parser.precedence op)
| _ -> failwith "get_op_pre"
let set_op_assoc = function
| [Symbol op; String a] ->
let op = symbol_to_op op in
Hashtbl.replace Parser.oper_assoc op @@ Parser.assoc_of_string a;
2022-02-24 19:57:26 +09:00
Unit
| _ -> failwith "set_op_assoc"
let get_op_assoc = function
| [Symbol op] ->
let op = symbol_to_op op in
Hashtbl.find_opt Parser.oper_assoc op
|> Option.value ~default: Parser.Left_to_right
|> (fun a -> String (Parser.assoc_to_string a))
| _ -> failwith "get_op_assoc"
2022-02-21 02:17:29 +09:00
let print args =
let to_string = function
| Int n -> string_of_int n
| Float n -> string_of_float n
| Bool b -> string_of_bool b
| String s -> s
| Symbol s -> s
| _ -> failwith "print"
in
List.map to_string args
|> List.iter (Printf.printf "%s");
2022-02-24 19:57:26 +09:00
Unit
2022-02-21 02:17:29 +09:00
let println args =
ignore @@ print args;
Printf.printf "\n";
2022-02-24 19:57:26 +09:00
Unit
2022-02-21 02:17:29 +09:00
2022-02-24 02:31:29 +09:00
let methods =
let open Type in
let ip = [Int; Int] and fp = [Float; Float] in
let number f = [ip, f; fp, f] in
[
"+", [ip, vi Int.add; fp, vf Float.add];
"-", [ip, vi Int.sub; fp, vf Float.sub;
[Int], negate; [Float], negate];
"*", [ip, vi Int.mul; fp, vf Float.mul];
"/", [ip, vi Int.div; fp, vf Float.div];
"%", [ip, vi Int.rem; fp, vf Float.rem];
"^", [fp, vf Float.pow];
"=", number eq;
"<>", number neq;
">=", number ge;
"<=", number le;
">", number gt;
"<", number lt;
"sin", [floatfun Float.sin];
"cos", [floatfun Float.cos];
"tan", [floatfun Float.tan];
"deg", [floatfun deg];
"rad", [floatfun rad];
"set_op_pre", [[Symbol; Int], set_op_pre];
"get_op_pre", [[Symbol], get_op_pre];
"set_op_assoc", [[Symbol; String], set_op_assoc];
"get_op_assoc", [[Symbol], get_op_assoc];
"print", [[Any], print];
"println", [[Any], println];
]
|> List.to_seq
|> Hashtbl.of_seq
let get op =
Hashtbl.find methods op
2022-02-08 00:46:43 +09:00
end
2022-02-24 02:31:29 +09:00
(* find_method returns a method and (corresponding) type list that
* satisfies ts. *)
let find_method m ts =
let open List in
let filter_type t i =
filter (fun (ts, _) ->
nth_opt ts i
2022-02-24 02:31:29 +09:00
|> Option.map (Type.matches t)
|> Option.value ~default: false)
2022-01-25 15:28:38 +09:00
in
2022-02-24 02:31:29 +09:00
let rec aux ms i = function
| [] -> nth_opt ms 0
| t::ts ->
2022-02-24 02:31:29 +09:00
(match aux (filter_type t i ms) (i+1) ts with
| None -> Option.bind (Type.supertype t)
2022-02-24 02:31:29 +09:00
(fun t -> aux ms i (t::ts))
| Some _ as x -> x)
in
2022-02-24 02:31:29 +09:00
let ms =
let len = length ts in
Primitive.get m
|> filter (fun (ts, _) -> length ts = len)
in
aux ms 0 ts
2022-01-25 15:28:38 +09:00
let promote_values =
let rec promote_until t v =
2022-02-24 02:31:29 +09:00
if Type.matches t @@ Value.typeof v
then v
else promote_until t @@ Value.promote v
2022-01-18 16:52:33 +09:00
in
List.map2 promote_until
2022-02-24 02:31:29 +09:00
exception No_such_method of string * Type.t
let no_such m v = raise @@ No_such_method (m, Value.typeof v)
let unary op v =
2022-02-24 02:31:29 +09:00
match find_method op [Value.typeof v] with
| None -> no_such op v
| Some (ts, f) ->
let vs = promote_values ts [v] in
f vs
let binop op l r =
let open Value in
2022-02-24 02:31:29 +09:00
match find_method op [typeof l; typeof r] with
| None -> no_such op l
| Some (ts, f) ->
let vs = promote_values ts [l; r] in
f vs
2022-01-10 23:11:13 +09:00
2022-02-24 02:31:29 +09:00
let extern f args =
match find_method f (List.map Value.typeof args) with
| None -> no_such f (List.hd args)
| Some (ts, f) ->
let vs = promote_values ts args in
f vs
2022-02-08 01:00:31 +09:00
exception Unbound of string
2022-02-24 19:57:26 +09:00
exception Noop
2022-02-08 01:00:31 +09:00
2022-02-21 02:15:13 +09:00
let rec eval global env ast =
let aux = eval global env in (* eval with current env *)
2022-02-19 23:17:10 +09:00
match ast with
2022-02-24 19:57:26 +09:00
| Nothing -> raise Noop
| Nunit -> Unit
| Nint n -> Int n
| Nfloat n -> Float n
2022-02-08 16:05:33 +09:00
| Nbool b -> Bool b
| Nstring s -> String s
2022-02-08 00:26:03 +09:00
| Nsymbol s -> Symbol s
2022-02-18 16:49:20 +09:00
| Nfunction (arg, e) -> Function (None, arg, e, env)
| Nexternal f -> External f
2022-02-09 17:27:19 +09:00
2022-02-01 02:13:14 +09:00
| Var v -> begin match Env.get_opt env v with
2022-02-21 02:15:13 +09:00
| None -> (try Hashtbl.find global v
with Not_found -> raise @@ Unbound v)
2022-01-20 01:35:18 +09:00
| Some v -> v
end
2022-02-09 17:27:19 +09:00
| Letin (v, e, f) ->
2022-02-12 03:18:00 +09:00
let env = Env.bind (v, aux e) env in
2022-02-21 02:15:13 +09:00
eval global env f
2022-02-09 17:27:19 +09:00
| Unary (op, v) -> unary op (aux v)
| Binop (l, op, r) -> binop op (aux l) (aux r)
2022-02-19 23:17:10 +09:00
2022-02-08 16:05:33 +09:00
| If (co, th, el) ->
begin match aux co with
| Bool true -> aux th
| Bool false -> aux el
| v -> raise @@ Type.Invalid (Value.typeof v)
end
2022-02-22 17:01:39 +09:00
| Apply (v, args) ->
let args = List.map (eval global env) args in
apply global env v args
2022-02-10 01:37:01 +09:00
2022-02-08 01:22:49 +09:00
| _ -> failwith "Eval.eval"
2022-02-19 23:17:10 +09:00
(* apply args to result of expr *)
2022-02-21 02:15:13 +09:00
and apply global env expr args =
match eval global env expr with
2022-02-22 17:01:39 +09:00
| Function (itself, vars, body, local_env) as f ->
2022-02-19 23:17:10 +09:00
begin match args with
| [] -> f
2022-02-22 17:01:39 +09:00
| args ->
2022-02-23 02:45:36 +09:00
(* bind arguments to variables *)
2022-02-22 17:01:39 +09:00
let rec aux e = function
| [], [] -> [], [], e
| vars, [] -> vars, [], e
| [], args -> [], args, e
| v::vars, a::args ->
let e = Env.bind (v, a) e in
aux e (vars, args)
in
let vars, args, env = aux local_env (vars, args) in
2022-02-19 23:17:10 +09:00
let env = (* binding itself into env for recursion *)
2022-02-22 17:01:39 +09:00
itself |> Option.fold
~none: env
~some: (fun n -> Env.bind (n, f) env)
2022-02-19 23:17:10 +09:00
in
2022-02-22 17:01:39 +09:00
if vars <> [] then (* partially-applied function *)
Function (None, vars, body, env)
else if args <> [] then (* reapply *)
apply global env body args
else (* eval (vars = [], args = []) *)
eval global env body
2022-02-19 23:17:10 +09:00
end
2022-02-24 02:31:29 +09:00
| External f -> extern f args
2022-02-19 23:17:10 +09:00
| v ->
if args = [] then v
else raise @@ Type.Invalid (Value.typeof v)
(* toplevel for global let *)
2022-02-21 02:15:13 +09:00
let eval_top global ast =
2022-02-18 16:49:20 +09:00
let var, v = match ast with
2022-02-19 20:39:50 +09:00
| Let (var, Nfunction (arg, e)) -> (* named function *)
2022-02-21 02:15:13 +09:00
var, Function (Some var, arg, e, Env.empty)
| Let (var, e) -> var, eval global Env.empty e
| ast -> "-", eval global Env.empty ast
2022-02-18 16:49:20 +09:00
in
2022-02-21 02:15:13 +09:00
if var <> "-" then Hashtbl.replace global var v;
2022-02-18 16:49:20 +09:00
var, v