Synchronous_reactive_systems/src/parser.mly

430 lines
13 KiB
OCaml
Raw Normal View History

%{
2022-12-09 17:01:04 +01:00
open Ast
open Utils
2022-12-13 11:45:40 +01:00
let bloop () = Format.printf "bloop\n"
let current_location () = symbol_start_pos (), symbol_end_pos ()
let defined_nodes : (ident, t_node) Hashtbl.t = Hashtbl.create Config.maxvar
2022-12-13 15:02:54 +01:00
let defined_vars : (ident, t_var) Hashtbl.t = Hashtbl.create Config.maxvar
2022-12-09 17:01:04 +01:00
let fetch_node (n: ident) =
match Hashtbl.find_opt defined_nodes n with
| None ->
raise (MyParsingError
("The node "^n^" does not exist.", current_location()))
| Some node -> node
2022-12-09 17:01:04 +01:00
let fetch_var (n: ident) : t_var =
match Hashtbl.find_opt defined_vars n with
| None ->
raise (MyParsingError
("The var "^n^" does not exist.", current_location()))
2022-12-13 15:02:54 +01:00
| Some var -> var
2022-12-13 15:02:54 +01:00
(*
let fetch_var_def (n: ident) : t_var =
match Hashtbl.find_opt defined_vars n with
| None ->
raise (MyParsingError
("The var "^n^" does not exist.", current_location()))
| Some (var, true) ->
raise (MyParsingError
("The variable "^n^" is defined for the second time.",
current_location()))
| Some (var, false) ->
(Hashtbl.replace defined_vars n (var, true) ; var)
2022-12-13 15:02:54 +01:00
*)
let concat_varlist (t1, e1) (t2, e2) = (t1 @ t2, e1 @ e2)
2022-12-09 17:01:04 +01:00
let make_ident (v : t_var) : t_varlist =
match v with
| IVar _ -> [TInt ], [v]
| BVar _ -> [TBool], [v]
| RVar _ -> [TReal], [v]
2022-12-09 17:01:04 +01:00
let add_ident (v : t_var) (l: t_varlist) : t_varlist =
match v, l with
| IVar _, (tl, l) -> ((TInt :: tl), v :: l)
| BVar _, (tl, l) -> ((TBool :: tl), v :: l)
| RVar _, (tl, l) -> ((TReal :: tl), v :: l)
let monop_condition expr typ_constraint error_msg res =
if type_exp expr = typ_constraint
then res
else raise (MyParsingError (error_msg, current_location()))
let monop_neg_condition expr typ_constraint error_msg res =
if type_exp expr <> typ_constraint
then res
else raise (MyParsingError (error_msg, current_location()))
let make_binop_nonbool e1 e2 op error_msg =
let t1 = type_exp e1 in let t2 = type_exp e2 in
(** e1 and e2 should be nunmbers here.*)
if list_chk t1 [[TInt]; [TReal]] && list_chk t2 [[TInt]; [TReal]]
then
begin
if t1 = t2
then EBinOp (t1, op, e1, e2)
else raise (MyParsingError (error_msg, current_location()))
end
else raise (MyParsingError (error_msg, current_location()))
let make_binop_bool e1 e2 op error_msg =
let t1 = type_exp e1 in let t2 = type_exp e2 in
if t1 = t2 && t1 = [TBool]
then EBinOp (t1, op, e1, e2)
else raise (MyParsingError (error_msg, current_location()))
let make_comp e1 e2 op error_msg =
let t1 = type_exp e1 in let t2 = type_exp e2 in
(** e1 and e2 should not be tuples *)
if t1 = t2 && List.length t1 = 1
then EComp ([TBool], op, e1, e2)
else raise (MyParsingError (error_msg, current_location()))
let make_comp_nonbool e1 e2 op error_msg =
let t1 = type_exp e1 in let t2 = type_exp e2 in
(** e1 and e2 should be nunmbers here.*)
if list_chk t1 [[TInt]; [TReal]] && list_chk t2 [[TInt]; [TReal]]
then
begin
if t1 = t2
then EComp ([TBool], op, e1, e2)
else raise (MyParsingError (error_msg, current_location()))
end
else raise (MyParsingError (error_msg, current_location()))
let make_tertiary e1 e2 e3 op error_msg =
let t1 = type_exp e1 in let t2 = type_exp e2 in let t3 = type_exp e3 in
if t2 = t3 && t1 = [TBool]
then ETriOp (t2, op, e1, e2, e3)
else raise (MyParsingError (error_msg, current_location()))
%}
%token EOF
%token<string> IDENT
%token LPAREN
%token RPAREN
%token RETURNS
%token SEMICOL
%token COLON
%token BOOL
%token INT
%token REAL
%token LET
%token TEL
%token NODE
%token VAR
%token EQUAL
%token COMMA
%token<Ast.base_ty> TYP
%token MO_not
%token MO_pre
%token PLUS
%token MINUS
%token BO_and
%token BO_or
%token BO_mul
%token BO_div
%token BO_mod
%token BO_arrow
%token BO_fby
%token CMP_le
%token CMP_lt
%token CMP_ge
%token CMP_gt
%token CMP_neq
%token TO_merge
%token WHEN
2022-12-10 02:18:04 +01:00
%token RESET
%token IF
%token THEN
%token ELSE
2022-12-13 11:45:40 +01:00
%token AUTOMAT
%token CASE
%token MATCH
%token WITH
%token DO
%token DONE
%token UNTIL
%token<int> CONST_INT
%token<bool> CONST_BOOL
%token<Ast.real> CONST_REAL
2022-12-15 09:13:28 +01:00
%left MO_not
%left MO_pre
%left PLUS
%left MINUS
%left BO_and BO_or BO_mul BO_div BO_mod BO_arrow BO_fby TO_merge
/* The Entry Point */
%start main
%type <Ast.t_nodelist> main
%%
main: nodes EOF { $1 };
nodes:
| /* empty */ { [] }
| node nodes { $1 :: $2 };
node:
2022-12-08 17:52:19 +01:00
NODE node_content
{ (* Flush known variables *) Hashtbl.clear defined_vars; $2 }
node_content:
IDENT LPAREN in_params RPAREN
RETURNS LPAREN out_params RPAREN OPTIONAL_SEMICOL
local_params
2022-12-13 15:02:54 +01:00
LET node_body TEL OPTIONAL_SEMICOL
2022-12-09 15:47:27 +01:00
{ let node_name = $1 in
2022-12-13 15:02:54 +01:00
let (eqs, aut) = $12 in
let (t_in, e_in) = $3 in
let (t_out, e_out) = $7 in
2022-12-08 17:52:19 +01:00
let n: t_node =
2022-12-09 15:47:27 +01:00
{ n_name = node_name;
n_inputs = (t_in, e_in);
n_outputs = (t_out, e_out);
2022-12-09 15:47:27 +01:00
n_local_vars = $10;
2022-12-13 15:02:54 +01:00
n_equations = eqs;
n_automata = aut; } in
2022-12-14 18:41:59 +01:00
if Hashtbl.find_opt defined_nodes node_name <> None
then raise (MyParsingError
(Format.asprintf "The node %s is already defined."
node_name,
current_location()))
else Hashtbl.add defined_nodes node_name n; n };
2022-12-13 15:02:54 +01:00
node_body:
| /* empty */ { ([], []) }
| equations node_body { let (eq, aut) = $2 in ($1@eq, aut) }
| automaton node_body { let (eq, aut) = $2 in (eq, $1::aut) }
OPTIONAL_SEMICOL:
| /* empty */ {}
| SEMICOL {}
;
in_params:
| /* empty */ { ([], []) }
| param_list { $1 }
;
out_params: param_list { $1 } ;
local_params:
| /* empty */ { ([], []) }
| VAR param_list_semicol { $2 }
;
param_list_semicol:
2022-12-09 15:47:27 +01:00
| param SEMICOL { $1 }
| param SEMICOL param_list_semicol { concat_varlist $1 $3 }
param_list:
| param { $1 }
| param SEMICOL param_list { concat_varlist $1 $3 }
;
param:
ident_comma_list COLON TYP
{ let typ = $3 in
let idents = $1 in
(list_repeat (List.length idents) typ,
match typ with
| TBool ->
List.map (fun s ->
2022-12-13 15:02:54 +01:00
Hashtbl.add defined_vars s (BVar s); BVar s) idents
| TReal ->
List.map (fun s ->
2022-12-13 15:02:54 +01:00
Hashtbl.add defined_vars s (RVar s); RVar s) idents
| TInt ->
List.map (fun s ->
2022-12-13 15:02:54 +01:00
Hashtbl.add defined_vars s (IVar s); IVar s) idents) }
;
ident_comma_list:
| IDENT { [$1] }
| IDENT COMMA ident_comma_list { $1 :: $3 }
equations:
| /* empty */ { [] }
| equation SEMICOL equations
2022-12-09 15:47:27 +01:00
{ $1 :: $3 }
;
equation:
2022-12-13 15:02:54 +01:00
| pattern EQUAL expr
2022-12-08 17:52:19 +01:00
{ let (t_patt, patt) = $1 in
2022-12-10 00:33:14 +01:00
let expr = $3 in let texpr = type_exp expr in
if t_patt = texpr
2022-12-08 17:52:19 +01:00
then ((t_patt, patt), expr)
2022-12-10 17:20:02 +01:00
else (raise (MyParsingError ("The equation does not type check!",
2022-12-10 00:33:14 +01:00
current_location()))) };
2022-12-13 15:02:54 +01:00
automaton:
| AUTOMAT transition_list { (List.hd $2, $2)}
;
pattern:
| IDENT
2022-12-13 15:02:54 +01:00
{ let v = fetch_var $1 in (type_var v, [v]) }
| LPAREN ident_comma_list_patt RPAREN { $2 };
ident_comma_list_patt:
2022-12-13 15:02:54 +01:00
| IDENT { make_ident (fetch_var $1) }
| IDENT COMMA ident_comma_list_patt { add_ident (fetch_var $1) $3 }
expr:
/* Note: EQUAL does not follow the nomenclature CMP_, ... */
| LPAREN expr RPAREN { $2 }
2022-12-09 17:01:04 +01:00
| IDENT { let v = fetch_var $1 in EVar (type_var v, v) }
/* Unary operators */
| MO_not expr
{ monop_condition $2 [TBool]
"You cannot negate a non-boolean expression."
(EMonOp (type_exp $2, MOp_not, $2)) }
2022-12-09 17:01:04 +01:00
| MO_pre expr { EMonOp (type_exp $2, MOp_pre, $2) }
| MINUS expr
{ monop_neg_condition $2 [TBool]
"You cannot take the opposite of a boolean expression."
(EMonOp (type_exp $2, MOp_minus, $2)) }
| PLUS expr
{ monop_neg_condition $2 [TBool]
"You cannot take the plus of a boolean expression." $2 }
/* Binary operators */
| expr PLUS expr
{ make_binop_nonbool $1 $3 BOp_add
"You should know better; addition hates booleans" }
| expr MINUS expr
{ make_binop_nonbool $1 $3 BOp_sub
"You should know better; subtraction hates booleans" }
| expr BO_mul expr
{ make_binop_nonbool $1 $3 BOp_mul
"You should know better; multiplication hates booleans" }
| expr BO_div expr
{ make_binop_nonbool $1 $3 BOp_div
"You should know better; division hates booleans" }
| expr BO_mod expr
{ make_binop_nonbool $1 $3 BOp_mod
"You should know better; modulo hates booleans" }
| expr BO_and expr
{ make_binop_bool $1 $3 BOp_and
"You should know better; conjunction hates numbers" }
| expr BO_or expr
{ make_binop_bool $1 $3 BOp_or
"You should know better; disjunction hates numbers" }
| expr BO_arrow expr
{ let e1 = $1 in let t1 = type_exp e1 in
let e2 = $3 in let t2 = type_exp e2 in
if t1 = t2
then EBinOp (type_exp $1, BOp_arrow, $1, $3)
else raise (MyParsingError ("The -> does not type-check",
current_location())) }
/* Binary operators, syntactic sugar */
| expr BO_fby expr
{ (* e fby e' ==> e -> (pre e') *)
let e1 = $1 in let t1 = type_exp e1 in
let e2 = $3 in let t2 = type_exp e2 in
if t1 = t2
then EBinOp (t1, BOp_arrow, e1, (EMonOp (t1, MOp_pre, e2)))
else raise (MyParsingError ("The fby does not type-check!",
current_location())) }
/* Comparison operators */
| expr EQUAL expr
{ make_comp $1 $3 COp_eq "The equality does not type-check!" }
| expr CMP_neq expr
{ make_comp $1 $3 COp_neq "The inquality does not type-check!" }
| expr CMP_le expr
{ make_comp_nonbool $1 $3 COp_le "The comparison <= does not type-check!" }
| expr CMP_lt expr
{ make_comp_nonbool $1 $3 COp_lt "The comparison < does not type-check!" }
| expr CMP_ge expr
{ make_comp_nonbool $1 $3 COp_ge "The comparison >= does not type-check!" }
| expr CMP_gt expr
{ make_comp_nonbool $1 $3 COp_gt "The comparison > does not type-check!" }
/* Tertiary operators */
| IF expr THEN expr ELSE expr
{ make_tertiary $2 $4 $6 TOp_if "The if-then-else does not type-check!" }
| TO_merge expr expr expr
{ make_tertiary $2 $3 $4 TOp_merge "The merge does not type-check!" }
/* When is neither a binop (a * 'a -> 'a) or a comp ('a * 'a -> bool) */
| expr WHEN expr
{ let e1 = $1 in let t1 = type_exp e1 in
let e2 = $3 in let t2 = type_exp e2 in
if t2 = [TBool]
2022-12-13 14:25:48 +01:00
then EWhen (t1, e1, e2)
else raise (MyParsingError ("The when does not type-check!",
current_location())) }
2022-12-10 02:18:04 +01:00
| expr RESET expr
{ let e1 = $1 in let t1 = type_exp e1 in
let e2 = $3 in let t2 = type_exp e2 in
if t2 = [TBool]
2022-12-13 14:25:48 +01:00
then EReset (t1, e1, e2)
2022-12-10 02:18:04 +01:00
else raise (MyParsingError ("The reset does not type-check!",
current_location())) }
/* Constants */
| CONST_INT { EConst ([TInt], CInt $1) }
| CONST_BOOL { EConst ([TBool], CBool $1) }
| CONST_REAL { EConst ([TReal], CReal $1) }
/* Tuples */
| LPAREN expr_comma_list RPAREN { $2 }
/* Applications */
| IDENT LPAREN expr_comma_list RPAREN
{ let name = $1 in
2022-12-09 17:01:04 +01:00
let node = fetch_node name in
let args = $3 in
if type_exp args = fst node.n_inputs
then EApp (fst node.n_outputs, fetch_node name, args)
else raise (MyParsingError ("The application does not type check!",
current_location()))
2022-12-09 17:01:04 +01:00
}
2022-12-13 15:02:54 +01:00
/* Automaton */
;
expr_comma_list:
| expr
{ let e = $1 in
match e with
| ETuple _ -> e
| _ -> ETuple (type_exp e, [e]) }
| expr COMMA expr_comma_list
{ let e = $1 in
let le = $3 in
match e, le with
| ETuple (l1, t), ETuple (l2, t') -> ETuple (l1 @ l2, t @ t')
| _, ETuple (lt, t') -> ETuple (((type_exp e) @ lt), e :: t')
| _, _ -> raise (MyParsingError ("This exception should not have been \
raised.",
current_location())) }
;
ident_comma_list:
| IDENT { [$1] }
| IDENT COMMA ident_comma_list { $1 :: $3 }
;
2022-12-13 11:45:40 +01:00
transition:
| CASE IDENT BO_arrow DO equations DONE {
State($2, $5, EConst([TBool], CBool(true)), $2) }
| CASE IDENT BO_arrow DO equations UNTIL expr THEN IDENT {
State($2, $5, $7, $9)}
;
transition_list:
| transition { [$1] }
| transition transition_list { $1 :: $2 }
2022-12-13 15:02:54 +01:00
| /* empty */ {raise(MyParsingError("Empty automaton", current_location()))}
2022-12-13 11:45:40 +01:00
;