2022-02-01 21:38:00 +09:00
|
|
|
(* simple, untyped AST. *)
|
|
|
|
type t =
|
2022-02-07 01:09:57 +09:00
|
|
|
| Nint of int
|
|
|
|
| Nfloat of float
|
2022-02-08 16:05:33 +09:00
|
|
|
| Nbool of bool
|
2022-02-07 01:09:57 +09:00
|
|
|
| Nstring of string
|
2022-02-08 00:26:03 +09:00
|
|
|
| Nsymbol of string
|
2022-02-07 01:09:57 +09:00
|
|
|
| Nfunction of string list * t
|
|
|
|
| Nexternal of string
|
2022-02-01 21:38:00 +09:00
|
|
|
| Var of string
|
|
|
|
| Let of string * t
|
2022-02-09 17:27:19 +09:00
|
|
|
| Letin of string * t * t
|
2022-02-01 21:38:00 +09:00
|
|
|
| Unary of operator * t
|
|
|
|
| Binop of t * operator * t
|
2022-02-08 16:05:33 +09:00
|
|
|
| If of t * t * t (* cond then else *)
|
2022-02-01 21:38:00 +09:00
|
|
|
| Apply of t * t list (* function application *)
|
2022-02-07 23:12:11 +09:00
|
|
|
(* these will be seperated into (toplevel) directives. *)
|
2022-02-01 21:38:00 +09:00
|
|
|
| Set_binop_pre of operator * t
|
|
|
|
| Get_binop_pre of operator
|
|
|
|
| Set_binop_aso of operator * string
|
|
|
|
| Get_binop_aso of operator
|
|
|
|
|
|
|
|
and operator =
|
|
|
|
| Add | Sub | Mul | Div (* arithmetics *)
|
|
|
|
| Mod (* modular operation *)
|
|
|
|
| Exp (* exponentation *)
|
2022-02-08 22:02:00 +09:00
|
|
|
| Eq | Neq | GE | LE | GT | LT
|
2022-02-01 21:38:00 +09:00
|
|
|
| Negate
|
|
|
|
|
2022-02-07 23:12:11 +09:00
|
|
|
let op_to_string = function
|
|
|
|
| Add -> "+"
|
|
|
|
| Sub -> "-"
|
|
|
|
| Mul -> "*"
|
|
|
|
| Div -> "/"
|
|
|
|
| Mod -> "%"
|
|
|
|
| Exp -> "^"
|
2022-02-08 22:02:00 +09:00
|
|
|
| Eq -> "="
|
|
|
|
| Neq -> "<>"
|
|
|
|
| GE -> ">="
|
|
|
|
| LE -> "<="
|
|
|
|
| GT -> ">"
|
|
|
|
| LT -> "<"
|
2022-02-07 23:12:11 +09:00
|
|
|
| Negate -> "-"
|
2022-01-10 01:31:47 +09:00
|
|
|
|
2022-01-23 01:20:34 +09:00
|
|
|
let unary op t =
|
|
|
|
Unary (op, t)
|
|
|
|
|
2022-01-10 01:31:47 +09:00
|
|
|
let binop left op right =
|
|
|
|
Binop (left, op, right)
|
|
|
|
|
|
|
|
(* print ast LISP style. *)
|
|
|
|
let print ast =
|
|
|
|
let pr = Printf.printf in
|
2022-01-10 23:11:13 +09:00
|
|
|
let rec aux = function
|
2022-02-07 01:09:57 +09:00
|
|
|
| Nint n -> pr "%d" n
|
|
|
|
| Nfloat n -> pr "%f" n
|
2022-02-08 16:05:33 +09:00
|
|
|
| Nbool b -> pr "%b" b
|
2022-02-07 01:09:57 +09:00
|
|
|
| Nstring s -> pr "\"%s\"" s
|
2022-02-08 00:26:03 +09:00
|
|
|
| Nsymbol s -> pr "#%s" s
|
2022-02-07 01:09:57 +09:00
|
|
|
| Nfunction (args, e) ->
|
2022-02-08 16:05:33 +09:00
|
|
|
pr "(lambda (%s" @@ List.hd args;
|
2022-02-07 01:09:57 +09:00
|
|
|
List.iter (pr " %s") @@ List.tl args;
|
2022-02-08 16:05:33 +09:00
|
|
|
pr ") "; aux e; pr ")"
|
2022-02-07 01:09:57 +09:00
|
|
|
| Nexternal e -> pr "(extern %s)" e
|
2022-02-09 17:27:19 +09:00
|
|
|
|
2022-01-19 14:17:04 +09:00
|
|
|
| Var v -> pr "%s" v
|
2022-01-21 00:17:01 +09:00
|
|
|
| Let (v, e) ->
|
2022-02-09 17:27:19 +09:00
|
|
|
pr "(define %s " v; aux e; pr ")"
|
|
|
|
| Letin (v, e, f) ->
|
|
|
|
pr "(let ((%s " v; aux e; pr "))"; aux f; pr ")"
|
2022-01-29 20:01:48 +09:00
|
|
|
| Unary (op, t) ->
|
2022-02-07 23:12:11 +09:00
|
|
|
let op = op_to_string op in
|
2022-02-01 21:38:00 +09:00
|
|
|
pr "(%s " op; aux t; pr ")"
|
2022-01-29 20:01:48 +09:00
|
|
|
| Binop (left, op, right) ->
|
2022-02-07 23:12:11 +09:00
|
|
|
let op = op_to_string op in
|
2022-02-01 21:38:00 +09:00
|
|
|
pr "(%s " op; aux left; pr " "; aux right; pr ")"
|
2022-02-08 16:05:33 +09:00
|
|
|
| If (co, th, el) ->
|
|
|
|
let f e = pr " "; aux e in
|
|
|
|
pr "(if"; f co; f th; f el; pr ")"
|
2022-01-29 20:01:48 +09:00
|
|
|
| Apply (f, args) ->
|
2022-02-08 16:05:33 +09:00
|
|
|
pr "("; aux f; List.iter (fun a -> pr " "; aux a) args; pr ")"
|
2022-01-29 20:01:48 +09:00
|
|
|
|
2022-01-10 01:31:47 +09:00
|
|
|
| Set_binop_pre (op, pre) ->
|
2022-02-07 23:12:11 +09:00
|
|
|
pr "(set_pre %s " (op_to_string op);
|
2022-01-10 01:31:47 +09:00
|
|
|
aux pre;
|
|
|
|
pr ")"
|
2022-01-11 01:05:29 +09:00
|
|
|
| Get_binop_pre op ->
|
2022-02-07 23:12:11 +09:00
|
|
|
pr "(get_pre %s)" (op_to_string op)
|
2022-01-20 23:36:53 +09:00
|
|
|
| Set_binop_aso (op, aso) ->
|
2022-02-07 23:12:11 +09:00
|
|
|
pr "(set_assoc %s %s)" (op_to_string op) aso
|
2022-01-20 23:36:53 +09:00
|
|
|
| Get_binop_aso op ->
|
2022-02-07 23:12:11 +09:00
|
|
|
pr "(get_pre %s)" (op_to_string op)
|
2022-01-10 01:31:47 +09:00
|
|
|
in
|
|
|
|
aux ast; pr "\n"
|