2019-05-12 21:31:22 +04:00
|
|
|
[@@@warning "-30-40-42"]
|
|
|
|
|
|
|
|
(* Abstract Syntax Tree (AST) for Mini-ML *)
|
|
|
|
|
|
|
|
type 'a reg = 'a Region.reg
|
|
|
|
|
2019-09-27 17:33:25 +04:00
|
|
|
let rec last to_region = function
|
|
|
|
[] -> Region.ghost
|
|
|
|
| [x] -> to_region x
|
|
|
|
| _::t -> last to_region t
|
|
|
|
|
|
|
|
let nsepseq_to_region to_region (hd,tl) =
|
|
|
|
let reg (_, item) = to_region item in
|
|
|
|
Region.cover (to_region hd) (last reg tl)
|
|
|
|
|
2019-05-12 21:31:22 +04:00
|
|
|
(* Keywords of OCaml *)
|
|
|
|
|
|
|
|
type keyword = Region.t
|
|
|
|
type kwd_and = Region.t
|
|
|
|
type kwd_begin = Region.t
|
|
|
|
type kwd_else = Region.t
|
|
|
|
type kwd_end = Region.t
|
|
|
|
type kwd_false = Region.t
|
|
|
|
type kwd_fun = Region.t
|
|
|
|
type kwd_if = Region.t
|
|
|
|
type kwd_in = Region.t
|
|
|
|
type kwd_let = Region.t
|
|
|
|
type kwd_match = Region.t
|
|
|
|
type kwd_mod = Region.t
|
|
|
|
type kwd_not = Region.t
|
|
|
|
type kwd_of = Region.t
|
|
|
|
type kwd_or = Region.t
|
|
|
|
type kwd_then = Region.t
|
|
|
|
type kwd_true = Region.t
|
|
|
|
type kwd_type = Region.t
|
|
|
|
type kwd_with = Region.t
|
|
|
|
type kwd_let_entry = Region.t
|
|
|
|
|
|
|
|
(* Symbols *)
|
|
|
|
|
|
|
|
type arrow = Region.t (* "->" *)
|
|
|
|
type cons = Region.t (* "::" *)
|
|
|
|
type cat = Region.t (* "^" *)
|
|
|
|
type append = Region.t (* "@" *)
|
|
|
|
type dot = Region.t (* "." *)
|
|
|
|
|
|
|
|
(* Arithmetic operators *)
|
|
|
|
|
|
|
|
type minus = Region.t (* "-" *)
|
|
|
|
type plus = Region.t (* "+" *)
|
|
|
|
type slash = Region.t (* "/" *)
|
|
|
|
type times = Region.t (* "*" *)
|
|
|
|
|
|
|
|
(* Boolean operators *)
|
|
|
|
|
|
|
|
type bool_or = Region.t (* "||" *)
|
|
|
|
type bool_and = Region.t (* "&&" *)
|
|
|
|
|
|
|
|
(* Comparisons *)
|
|
|
|
|
|
|
|
type equal = Region.t (* "=" *)
|
|
|
|
type neq = Region.t (* "<>" *)
|
|
|
|
type lt = Region.t (* "<" *)
|
|
|
|
type gt = Region.t (* ">" *)
|
|
|
|
type leq = Region.t (* "=<" *)
|
|
|
|
type geq = Region.t (* ">=" *)
|
|
|
|
|
|
|
|
(* Compounds *)
|
|
|
|
|
|
|
|
type lpar = Region.t (* "(" *)
|
|
|
|
type rpar = Region.t (* ")" *)
|
|
|
|
type lbracket = Region.t (* "[" *)
|
|
|
|
type rbracket = Region.t (* "]" *)
|
|
|
|
type lbrace = Region.t (* "{" *)
|
|
|
|
type rbrace = Region.t (* "}" *)
|
|
|
|
|
|
|
|
(* Separators *)
|
|
|
|
|
|
|
|
type comma = Region.t (* "," *)
|
|
|
|
type semi = Region.t (* ";" *)
|
|
|
|
type vbar = Region.t (* "|" *)
|
|
|
|
type colon = Region.t (* ":" *)
|
|
|
|
|
|
|
|
(* Wildcard *)
|
|
|
|
|
|
|
|
type wild = Region.t (* "_" *)
|
|
|
|
|
2019-05-13 14:28:10 +04:00
|
|
|
(* Virtual tokens *)
|
|
|
|
|
|
|
|
type eof = Region.t
|
|
|
|
|
2019-05-12 21:31:22 +04:00
|
|
|
(* Literals *)
|
|
|
|
|
|
|
|
type variable = string reg
|
|
|
|
type fun_name = string reg
|
|
|
|
type type_name = string reg
|
|
|
|
type field_name = string reg
|
|
|
|
type type_constr = string reg
|
|
|
|
type constr = string reg
|
|
|
|
|
|
|
|
(* Parentheses *)
|
|
|
|
|
|
|
|
type 'a par = {
|
|
|
|
lpar : lpar;
|
|
|
|
inside : 'a;
|
|
|
|
rpar : rpar
|
|
|
|
}
|
|
|
|
|
|
|
|
type the_unit = lpar * rpar
|
|
|
|
|
|
|
|
(* The Abstract Syntax Tree *)
|
|
|
|
|
|
|
|
type t = {
|
|
|
|
decl : declaration Utils.nseq;
|
|
|
|
eof : eof
|
|
|
|
}
|
|
|
|
|
|
|
|
and ast = t
|
|
|
|
|
|
|
|
and declaration =
|
2019-05-15 17:03:15 +04:00
|
|
|
Let of (kwd_let * let_binding) reg
|
2019-05-12 21:31:22 +04:00
|
|
|
| LetEntry of (kwd_let_entry * let_binding) reg
|
|
|
|
| TypeDecl of type_decl reg
|
|
|
|
|
|
|
|
(* Non-recursive values *)
|
|
|
|
|
|
|
|
and let_binding = {
|
2019-06-01 12:37:43 +04:00
|
|
|
bindings : pattern list;
|
2019-05-12 21:31:22 +04:00
|
|
|
lhs_type : (colon * type_expr) option;
|
|
|
|
eq : equal;
|
|
|
|
let_rhs : expr
|
|
|
|
}
|
|
|
|
|
2019-05-13 14:28:10 +04:00
|
|
|
(* Type declarations *)
|
2019-05-12 21:31:22 +04:00
|
|
|
|
|
|
|
and type_decl = {
|
|
|
|
kwd_type : kwd_type;
|
|
|
|
name : type_name;
|
|
|
|
eq : equal;
|
|
|
|
type_expr : type_expr
|
|
|
|
}
|
|
|
|
|
|
|
|
and type_expr =
|
|
|
|
TProd of cartesian
|
|
|
|
| TSum of (variant reg, vbar) Utils.nsepseq reg
|
|
|
|
| TRecord of record_type
|
|
|
|
| TApp of (type_constr * type_tuple) reg
|
2019-09-27 17:33:25 +04:00
|
|
|
| TFun of (type_expr * arrow * type_expr) reg
|
2019-05-12 21:31:22 +04:00
|
|
|
| TPar of type_expr par reg
|
|
|
|
| TAlias of variable
|
|
|
|
|
|
|
|
and cartesian = (type_expr, times) Utils.nsepseq reg
|
|
|
|
|
|
|
|
and variant = {
|
|
|
|
constr : constr;
|
|
|
|
args : (kwd_of * cartesian) option
|
|
|
|
}
|
|
|
|
|
|
|
|
and record_type = field_decl reg injection reg
|
|
|
|
|
|
|
|
and field_decl = {
|
|
|
|
field_name : field_name;
|
|
|
|
colon : colon;
|
|
|
|
field_type : type_expr
|
|
|
|
}
|
|
|
|
|
2019-05-14 17:56:08 +04:00
|
|
|
and type_tuple = (type_expr, comma) Utils.nsepseq par reg
|
2019-05-12 21:31:22 +04:00
|
|
|
|
|
|
|
and pattern =
|
|
|
|
PTuple of (pattern, comma) Utils.nsepseq reg
|
2019-05-13 14:28:10 +04:00
|
|
|
| PList of list_pattern
|
2019-05-12 21:31:22 +04:00
|
|
|
| PVar of variable
|
|
|
|
| PUnit of the_unit reg
|
|
|
|
| PInt of (string * Z.t) reg
|
|
|
|
| PTrue of kwd_true
|
|
|
|
| PFalse of kwd_false
|
|
|
|
| PString of string reg
|
|
|
|
| PWild of wild
|
|
|
|
| PPar of pattern par reg
|
|
|
|
| PConstr of (constr * pattern option) reg
|
|
|
|
| PRecord of record_pattern
|
|
|
|
| PTyped of typed_pattern reg
|
|
|
|
|
2019-05-13 14:28:10 +04:00
|
|
|
and list_pattern =
|
|
|
|
Sugar of pattern injection reg
|
|
|
|
| PCons of (pattern * cons * pattern) reg
|
|
|
|
|
2019-05-12 21:31:22 +04:00
|
|
|
and typed_pattern = {
|
|
|
|
pattern : pattern;
|
|
|
|
colon : colon;
|
|
|
|
type_expr : type_expr
|
|
|
|
}
|
|
|
|
|
|
|
|
and record_pattern = field_pattern reg injection reg
|
|
|
|
|
|
|
|
and field_pattern = {
|
|
|
|
field_name : field_name;
|
|
|
|
eq : equal;
|
|
|
|
pattern : pattern
|
|
|
|
}
|
|
|
|
|
|
|
|
and expr =
|
2019-05-13 19:35:31 +04:00
|
|
|
ECase of expr case reg
|
2019-05-14 17:56:08 +04:00
|
|
|
| EAnnot of annot_expr reg
|
2019-05-13 19:35:31 +04:00
|
|
|
| ELogic of logic_expr
|
|
|
|
| EArith of arith_expr
|
|
|
|
| EString of string_expr
|
|
|
|
| EList of list_expr
|
2019-05-14 17:56:08 +04:00
|
|
|
| EConstr of constr_expr reg
|
2019-05-13 19:35:31 +04:00
|
|
|
| ERecord of record_expr
|
|
|
|
| EProj of projection reg
|
|
|
|
| EVar of variable
|
2019-05-14 18:04:03 +04:00
|
|
|
| ECall of (expr * expr Utils.nseq) reg
|
2019-05-14 17:56:08 +04:00
|
|
|
| EBytes of (string * Hex.t) reg
|
2019-05-13 19:35:31 +04:00
|
|
|
| EUnit of the_unit reg
|
|
|
|
| ETuple of (expr, comma) Utils.nsepseq reg
|
|
|
|
| EPar of expr par reg
|
|
|
|
| ELetIn of let_in reg
|
2019-05-20 23:42:11 +04:00
|
|
|
| EFun of fun_expr reg
|
2019-05-13 19:35:31 +04:00
|
|
|
| ECond of conditional reg
|
|
|
|
| ESeq of sequence
|
2019-05-12 21:31:22 +04:00
|
|
|
|
2019-05-14 17:56:08 +04:00
|
|
|
and constr_expr = constr * expr option
|
|
|
|
|
|
|
|
and annot_expr = expr * type_expr
|
|
|
|
|
2019-05-13 14:28:10 +04:00
|
|
|
and 'a injection = {
|
|
|
|
opening : opening;
|
|
|
|
elements : ('a, semi) Utils.sepseq;
|
|
|
|
terminator : semi option;
|
|
|
|
closing : closing
|
|
|
|
}
|
|
|
|
|
|
|
|
and opening =
|
|
|
|
Begin of kwd_begin
|
2019-05-13 19:35:31 +04:00
|
|
|
| With of kwd_with
|
2019-05-13 14:28:10 +04:00
|
|
|
| LBrace of lbrace
|
|
|
|
| LBracket of lbracket
|
|
|
|
|
|
|
|
and closing =
|
|
|
|
End of kwd_end
|
|
|
|
| RBrace of rbrace
|
|
|
|
| RBracket of rbracket
|
|
|
|
|
|
|
|
and list_expr =
|
|
|
|
Cons of cons bin_op reg
|
|
|
|
| List of expr injection reg
|
2019-05-15 17:03:15 +04:00
|
|
|
(*| Append of (expr * append * expr) reg*)
|
2019-05-13 14:28:10 +04:00
|
|
|
|
2019-05-12 21:31:22 +04:00
|
|
|
and string_expr =
|
|
|
|
Cat of cat bin_op reg
|
|
|
|
| String of string reg
|
|
|
|
|
|
|
|
and arith_expr =
|
|
|
|
Add of plus bin_op reg
|
|
|
|
| Sub of minus bin_op reg
|
|
|
|
| Mult of times bin_op reg
|
|
|
|
| Div of slash bin_op reg
|
|
|
|
| Mod of kwd_mod bin_op reg
|
|
|
|
| Neg of minus un_op reg
|
|
|
|
| Int of (string * Z.t) reg
|
|
|
|
| Nat of (string * Z.t) reg
|
|
|
|
| Mtz of (string * Z.t) reg
|
|
|
|
|
|
|
|
and logic_expr =
|
|
|
|
BoolExpr of bool_expr
|
|
|
|
| CompExpr of comp_expr
|
|
|
|
|
|
|
|
and bool_expr =
|
|
|
|
Or of kwd_or bin_op reg
|
|
|
|
| And of kwd_and bin_op reg
|
|
|
|
| Not of kwd_not un_op reg
|
|
|
|
| True of kwd_true
|
|
|
|
| False of kwd_false
|
|
|
|
|
|
|
|
and 'a bin_op = {
|
|
|
|
op : 'a;
|
|
|
|
arg1 : expr;
|
|
|
|
arg2 : expr
|
|
|
|
}
|
|
|
|
|
|
|
|
and 'a un_op = {
|
|
|
|
op : 'a;
|
|
|
|
arg : expr
|
|
|
|
}
|
|
|
|
|
|
|
|
and comp_expr =
|
|
|
|
Lt of lt bin_op reg
|
|
|
|
| Leq of leq bin_op reg
|
|
|
|
| Gt of gt bin_op reg
|
|
|
|
| Geq of geq bin_op reg
|
|
|
|
| Equal of equal bin_op reg
|
|
|
|
| Neq of neq bin_op reg
|
|
|
|
|
2019-05-13 19:35:31 +04:00
|
|
|
and projection = {
|
|
|
|
struct_name : variable;
|
|
|
|
selector : dot;
|
|
|
|
field_path : (selection, dot) Utils.nsepseq
|
2019-05-12 21:31:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
and selection =
|
2019-05-13 19:35:31 +04:00
|
|
|
FieldName of variable
|
2019-05-12 21:31:22 +04:00
|
|
|
| Component of (string * Z.t) reg par reg
|
|
|
|
|
2019-05-15 17:03:15 +04:00
|
|
|
and record_expr = field_assign reg injection reg
|
2019-05-12 21:31:22 +04:00
|
|
|
|
2019-05-15 17:03:15 +04:00
|
|
|
and field_assign = {
|
2019-05-12 21:31:22 +04:00
|
|
|
field_name : field_name;
|
|
|
|
assignment : equal;
|
|
|
|
field_expr : expr
|
|
|
|
}
|
|
|
|
|
|
|
|
and sequence = expr injection reg
|
|
|
|
|
2019-05-13 19:35:31 +04:00
|
|
|
and 'a case = {
|
|
|
|
kwd_match : kwd_match;
|
|
|
|
expr : expr;
|
|
|
|
opening : opening;
|
|
|
|
lead_vbar : vbar option;
|
|
|
|
cases : ('a case_clause reg, vbar) Utils.nsepseq reg;
|
|
|
|
closing : closing
|
|
|
|
}
|
2019-05-12 21:31:22 +04:00
|
|
|
|
2019-05-13 19:35:31 +04:00
|
|
|
and 'a case_clause = {
|
|
|
|
pattern : pattern;
|
|
|
|
arrow : arrow;
|
|
|
|
rhs : 'a
|
|
|
|
}
|
2019-05-12 21:31:22 +04:00
|
|
|
|
2019-05-20 23:42:11 +04:00
|
|
|
and let_in = {
|
|
|
|
kwd_let : kwd_let;
|
2019-05-24 21:31:39 +04:00
|
|
|
binding : let_binding;
|
2019-05-20 23:42:11 +04:00
|
|
|
kwd_in : kwd_in;
|
|
|
|
body : expr
|
|
|
|
}
|
2019-05-12 21:31:22 +04:00
|
|
|
|
2019-05-20 23:42:11 +04:00
|
|
|
and fun_expr = {
|
|
|
|
kwd_fun : kwd_fun;
|
2019-06-01 15:29:31 +04:00
|
|
|
params : pattern list;
|
2019-05-28 19:00:43 +04:00
|
|
|
p_annot : (colon * type_expr) option;
|
2019-05-20 23:42:11 +04:00
|
|
|
arrow : arrow;
|
|
|
|
body : expr
|
|
|
|
}
|
2019-05-12 21:31:22 +04:00
|
|
|
|
2019-05-13 19:35:31 +04:00
|
|
|
and conditional = {
|
2019-05-20 23:42:11 +04:00
|
|
|
kwd_if : kwd_if;
|
|
|
|
test : expr;
|
|
|
|
kwd_then : kwd_then;
|
|
|
|
ifso : expr;
|
|
|
|
kwd_else : kwd_else;
|
|
|
|
ifnot : expr
|
2019-05-13 19:35:31 +04:00
|
|
|
}
|
2019-05-12 21:31:22 +04:00
|
|
|
|
|
|
|
(* Projecting regions of the input source code *)
|
|
|
|
|
2019-06-04 18:12:17 +04:00
|
|
|
let type_expr_to_region = function
|
2019-05-22 21:38:09 +04:00
|
|
|
TProd {region; _}
|
|
|
|
| TSum {region; _}
|
|
|
|
| TRecord {region; _}
|
|
|
|
| TApp {region; _}
|
|
|
|
| TFun {region; _}
|
|
|
|
| TPar {region; _}
|
|
|
|
| TAlias {region; _} -> region
|
|
|
|
|
2019-06-04 18:12:17 +04:00
|
|
|
let list_pattern_to_region = function
|
2019-05-13 14:28:10 +04:00
|
|
|
Sugar {region; _} | PCons {region; _} -> region
|
|
|
|
|
2019-06-04 18:12:17 +04:00
|
|
|
let pattern_to_region = function
|
|
|
|
PList p -> list_pattern_to_region p
|
2019-05-13 14:28:10 +04:00
|
|
|
| PTuple {region;_} | PVar {region;_}
|
2019-05-22 21:38:09 +04:00
|
|
|
| PUnit {region;_} | PInt {region;_}
|
|
|
|
| PTrue region | PFalse region
|
2019-05-13 14:28:10 +04:00
|
|
|
| PString {region;_} | PWild region
|
2019-05-22 21:38:09 +04:00
|
|
|
| PConstr {region; _} | PPar {region;_}
|
|
|
|
| PRecord {region; _} | PTyped {region; _} -> region
|
2019-05-12 21:31:22 +04:00
|
|
|
|
2019-06-04 18:12:17 +04:00
|
|
|
let bool_expr_to_region = function
|
2019-05-12 21:31:22 +04:00
|
|
|
Or {region;_} | And {region;_}
|
|
|
|
| True region | False region
|
|
|
|
| Not {region;_} -> region
|
|
|
|
|
2019-06-04 18:12:17 +04:00
|
|
|
let comp_expr_to_region = function
|
2019-05-12 21:31:22 +04:00
|
|
|
Lt {region;_} | Leq {region;_}
|
|
|
|
| Gt {region;_} | Geq {region;_}
|
|
|
|
| Neq {region;_} | Equal {region;_} -> region
|
|
|
|
|
2019-06-04 18:12:17 +04:00
|
|
|
let logic_expr_to_region = function
|
|
|
|
BoolExpr e -> bool_expr_to_region e
|
|
|
|
| CompExpr e -> comp_expr_to_region e
|
2019-05-12 21:31:22 +04:00
|
|
|
|
2019-06-04 18:12:17 +04:00
|
|
|
let arith_expr_to_region = function
|
2019-05-12 21:31:22 +04:00
|
|
|
Add {region;_} | Sub {region;_} | Mult {region;_}
|
|
|
|
| Div {region;_} | Mod {region;_} | Neg {region;_}
|
|
|
|
| Int {region;_} | Mtz {region; _}
|
|
|
|
| Nat {region; _} -> region
|
|
|
|
|
2019-06-04 18:12:17 +04:00
|
|
|
let string_expr_to_region = function
|
2019-05-12 21:31:22 +04:00
|
|
|
String {region;_} | Cat {region;_} -> region
|
|
|
|
|
2019-06-04 18:12:17 +04:00
|
|
|
let list_expr_to_region = function
|
2019-05-15 17:03:15 +04:00
|
|
|
Cons {region; _} | List {region; _}
|
|
|
|
(* | Append {region; _}*) -> region
|
2019-05-13 14:28:10 +04:00
|
|
|
|
2019-06-04 18:12:17 +04:00
|
|
|
let expr_to_region = function
|
|
|
|
ELogic e -> logic_expr_to_region e
|
|
|
|
| EArith e -> arith_expr_to_region e
|
|
|
|
| EString e -> string_expr_to_region e
|
|
|
|
| EList e -> list_expr_to_region e
|
2019-05-14 17:56:08 +04:00
|
|
|
| EAnnot {region;_ } | ELetIn {region;_} | EFun {region;_}
|
2019-05-13 19:35:31 +04:00
|
|
|
| ECond {region;_} | ETuple {region;_} | ECase {region;_}
|
|
|
|
| ECall {region;_} | EVar {region; _} | EProj {region; _}
|
2019-05-14 17:56:08 +04:00
|
|
|
| EUnit {region;_} | EPar {region;_} | EBytes {region; _}
|
2019-05-13 14:28:10 +04:00
|
|
|
| ESeq {region; _} | ERecord {region; _}
|
|
|
|
| EConstr {region; _} -> region
|
2019-05-12 21:31:22 +04:00
|
|
|
|
2019-05-15 17:03:15 +04:00
|
|
|
let rec unpar = function
|
|
|
|
EPar {value={inside=expr;_}; _} -> unpar expr
|
|
|
|
| e -> e
|