Skip to content

Commit

Permalink
Support DefA in algorithmic backend
Browse files Browse the repository at this point in the history
  • Loading branch information
f52985 committed Aug 28, 2024
1 parent bbddce6 commit cb3a68d
Show file tree
Hide file tree
Showing 19 changed files with 1,100 additions and 1,769 deletions.
1 change: 1 addition & 0 deletions spectec/src/al/al_util.ml
Original file line number Diff line number Diff line change
Expand Up @@ -275,3 +275,4 @@ let handlerT = varT "handler" []
let stateT = varT "state" []
let instrT = varT "instr" []
let admininstrT = varT "admininstr" []
let funcT = varT "func" []
2 changes: 2 additions & 0 deletions spectec/src/al/ast.ml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ and value =
| TupV of value list (* tuple of values *)
| FrameV of value option * value (* TODO: desugar using CaseV? *)
| LabelV of value * value (* TODO: desugar using CaseV? *)
| FnameV of id (* name of the first order function *)

type extend_dir = (* direction of extension *)
| Front (* extend from the front *)
Expand Down Expand Up @@ -134,6 +135,7 @@ and arg = arg' phrase
and arg' =
| ExpA of expr
| TypA of typ
| DefA of id

(* Instructions *)

Expand Down
1 change: 1 addition & 0 deletions spectec/src/al/eq.ml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ and eq_arg a1 a2 =
match a1.it, a2.it with
| ExpA e1, ExpA e2 -> eq_expr e1 e2
| TypA typ1, TypA typ2 -> Il.Eq.eq_typ typ1 typ2
| DefA id1, DefA id2 -> id1 = id2
| _ -> false

and eq_args al1 al2 = eq_list eq_arg al1 al2
Expand Down
3 changes: 2 additions & 1 deletion spectec/src/al/free.ml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ and free_path path =
and free_arg arg =
match arg.it with
| ExpA e -> free_expr e
| TypA _ -> IdSet.empty
| TypA _
| DefA _ -> IdSet.empty


(* Instructions *)
Expand Down
4 changes: 4 additions & 0 deletions spectec/src/al/print.ml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ and string_of_value =
| StrV r -> string_of_record r
| OptV (Some e) -> "?(" ^ string_of_value e ^ ")"
| OptV None -> "?()"
| FnameV id -> "$" ^ id

and string_of_values sep = string_of_list string_of_value sep

Expand Down Expand Up @@ -235,6 +236,7 @@ and string_of_arg arg =
match arg.it with
| ExpA e -> string_of_expr e
| TypA typ -> string_of_typ typ
| DefA id -> "$" ^ id

and string_of_args sep = string_of_list string_of_arg sep

Expand Down Expand Up @@ -400,6 +402,7 @@ let rec structured_string_of_value = function
| StrV _r -> "StrV (TODO)"
| OptV None -> "OptV"
| OptV (Some e) -> "OptV (" ^ structured_string_of_value e ^ ")"
| FnameV id -> "FnameV (\"" ^ id ^ "\")"

and structured_string_of_values vl = string_of_list structured_string_of_value ", " vl

Expand Down Expand Up @@ -561,6 +564,7 @@ and structured_string_of_arg arg =
match arg.it with
| ExpA e -> sprintf "ExpA (%s)" (structured_string_of_expr e)
| TypA typ -> sprintf "TypA (%s)" (string_of_typ typ)
| DefA id -> sprintf "DefA (%s)" id

and structured_string_of_args al = string_of_list structured_string_of_arg ", " al

Expand Down
2 changes: 1 addition & 1 deletion spectec/src/al/valid.ml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module Set = Free.IdSet
let bound_set: Set.t ref = ref Set.empty
let add_bound_var id = bound_set := Set.add id !bound_set
let add_bound_vars expr = bound_set := Set.union (Free.free_expr expr) !bound_set
let add_bound_param arg = match arg.it with ExpA e -> add_bound_vars e | TypA _ -> ()
let add_bound_param arg = match arg.it with ExpA e -> add_bound_vars e | TypA _ | DefA _ -> ()

(* Type Env *)

Expand Down
9 changes: 6 additions & 3 deletions spectec/src/al/walk.ml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ type unit_walker = {
let walk_arg (walker: unit_walker) (arg: arg) : unit =
match arg.it with
| ExpA e -> walker.walk_expr walker e
| TypA _ -> ()
| TypA _
| DefA _ -> ()

let walk_iter (walker: unit_walker) (iter: iter) : unit =
match iter with
Expand Down Expand Up @@ -104,7 +105,8 @@ let walk_arg (walker: walker) (arg: arg) : arg =
let walk_expr = walker.walk_expr walker in
match arg.it with
| ExpA e -> { arg with it = ExpA (walk_expr e) }
| TypA _ -> arg
| TypA _
| DefA _ -> arg

let walk_iter (walker: walker) (iter: iter) : iter =
let walk_expr = walker.walk_expr walker in
Expand Down Expand Up @@ -314,7 +316,8 @@ and walk_path f p =
and walk_arg f a =
match a.it with
| ExpA e -> { a with it = ExpA (walk_expr f e) }
| TypA _ -> a
| TypA _
| DefA _ -> a

let rec walk_instr f (instr:instr) : instr list =
let { pre_instr = pre; post_instr = post; stop_cond_instr = stop_cond; _ } = f in
Expand Down
1 change: 1 addition & 0 deletions spectec/src/backend-interpreter/ds.ml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ let lookup_env key env =
|> freeVar
|> raise

let lookup_env_opt key env = Env.find_opt key env

(* Info *)

Expand Down
1 change: 1 addition & 0 deletions spectec/src/backend-interpreter/ds.mli
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ val lookup_algo : string -> algorithm

type env = value Env.t
val lookup_env : string -> env -> value
val lookup_env_opt : string -> env -> value option

module Store : sig
val get : unit -> value
Expand Down
44 changes: 30 additions & 14 deletions spectec/src/backend-interpreter/interpreter.ml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,16 @@ let transpose matrix =
new_row :: new_rows in
transpose' matrix

let extract_exp a =
let is_not_typarg a =
match a.it with
| ExpA e -> Some e
| TypA _ -> None
let extract_expargs = List.filter_map extract_exp
| TypA _ -> false
| _ -> true
let remove_typargs = List.filter is_not_typarg

let dispatch_fname f env =
match lookup_env_opt ("$" ^ f) env with
| Some (FnameV f') -> f'
| _ -> f

let rec create_sub_al_context names iter env =
let option_name_to_list name = lookup_env name env |> unwrap_optv |> Option.to_list in
Expand Down Expand Up @@ -228,17 +232,19 @@ and eval_expr env expr =
eval_expr env e2 |> unwrap_listv_to_array |> Array.exists ((=) v1) |> boolV
(* Function Call *)
| CallE (fname, al) ->
let el = extract_expargs al in
let args = List.map (eval_expr env) el in
(match call_func fname args with
let fname' = dispatch_fname fname env in
let el = remove_typargs al in
let args = List.map (eval_arg env) el in
(match call_func fname' args with
| Some v -> v
| _ -> raise (Exception.MissingReturnValue fname)
)
| InvCallE (fname, _, al) ->
let el = extract_expargs al in
let fname' = dispatch_fname fname env in
let el = remove_typargs al in
(* TODO: refactor numerics function name *)
let args = List.map (eval_expr env) el in
(match call_func ("inverse_of_"^fname) args with
let args = List.map (eval_arg env) el in
(match call_func ("inverse_of_"^fname') args with
| Some v -> v
| _ -> raise (Exception.MissingReturnValue fname)
)
Expand Down Expand Up @@ -423,6 +429,11 @@ and eval_expr env expr =
boolV (List.length (WasmContext.get_value_stack ()) >= i)
| _ -> fail_expr expr "cannot evaluate expr"

and eval_arg env a =
match a.it with
| ExpA e -> eval_expr env e
| TypA _ -> assert false
| DefA id -> FnameV (dispatch_fname id env)

(* Assignment *)

Expand Down Expand Up @@ -544,6 +555,11 @@ and assign_split lhs vs env =
env |> assign ep prefix |> assign es suffix
)

and assign_param lhs rhs env =
match lhs.it with
| ExpA e -> assign e rhs env
| TypA _ -> assert false
| DefA id -> Env.add ("$" ^ id) rhs env

(* Step *)

Expand Down Expand Up @@ -616,8 +632,8 @@ and step_instr (fname: string) (ctx: AlContext.t) (env: value Env.t) (instr: ins
let new_env = ctx |> AlContext.get_env |> assign e1 (eval_expr env e2) in
AlContext.set_env new_env ctx
| PerformI (f, al) ->
let el = extract_expargs al in
let args = List.map (eval_expr env) el in
let el = remove_typargs al in
let args = List.map (eval_arg env) el in
call_func f args |> ignore;
ctx
| TrapI -> raise Exception.Trap
Expand Down Expand Up @@ -767,7 +783,7 @@ and create_context (name: string) (args: value list) : AlContext.mode =
let algo = lookup_algo name in
let params = params_of_algo algo in
let body = body_of_algo algo in
let params = params |> extract_expargs in
let params = params |> remove_typargs in

if List.length args <> List.length params then (
error
Expand All @@ -781,7 +797,7 @@ and create_context (name: string) (args: value list) : AlContext.mode =

let env =
Env.empty
|> List.fold_right2 assign params args
|> List.fold_right2 assign_param params args
in

AlContext.al (name, body, env)
Expand Down
1 change: 1 addition & 0 deletions spectec/src/backend-prose/print.ml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ and string_of_arg arg =
match arg.it with
| ExpA e -> string_of_expr e
| TypA typ -> string_of_typ typ
| DefA id -> "$" ^ id

and string_of_args sep =
let string_of_list stringifier sep = function
Expand Down
3 changes: 3 additions & 0 deletions spectec/src/backend-prose/render.ml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ let a2e a =
match a.it with
| Al.Ast.ExpA e -> e
| Al.Ast.TypA _ -> error a.at "Caannot render inverse function with type argument"
| Al.Ast.DefA _ -> error a.at "Caannot render inverse function with def argument"

let al_invcalle_to_al_bine e id nl al =
let efree = (match e.it with Al.Ast.TupE el -> el | _ -> [ e ]) in
Expand Down Expand Up @@ -145,6 +146,8 @@ and al_to_el_arg arg =
| Al.Ast.TypA _typ ->
(* TODO: Require Il.Ast.typ to El.Ast.typ translation *)
Some (El.Ast.(TypA (VarT ("TODO" $ arg.at, []) $ arg.at)))
| Al.Ast.DefA id ->
Some (El.Ast.DefA (id $ no_region))

and al_to_el_args args =
List.fold_left
Expand Down
6 changes: 4 additions & 2 deletions spectec/src/il2al/translate.ml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ let expr2arg e = ExpA e $ e.at
let arg2expr a =
match a.it with
| ExpA e -> e
| TypA _ -> error a.at "Argument is not an expression"
| TypA _
| DefA _ -> error a.at "Argument is not an expression"

(* Utils for IL *)
let is_case e =
Expand Down Expand Up @@ -326,7 +327,7 @@ and translate_args args = List.concat_map ( fun arg ->
match arg.it with
| Il.ExpA e -> [ ExpA (translate_exp e) $ arg.at ]
| Il.TypA typ -> [ TypA typ $ arg.at ]
| Il.DefA _ -> [] (* TODO: handle functions *)
| Il.DefA id -> [ DefA id.it $ arg.at ]
| Il.GramA _ -> [] ) args

(* `Il.path` -> `path list` *)
Expand Down Expand Up @@ -633,6 +634,7 @@ and call_lhs_to_inverse_call_rhs lhs rhs free_ids =
match a.it with
| ExpA e -> contains_ids free_ids e
| TypA _ -> false
| DefA _ -> false
in
let rhs2args e =
(match e.it with
Expand Down
20 changes: 12 additions & 8 deletions spectec/src/il2al/transpile.ml
Original file line number Diff line number Diff line change
Expand Up @@ -578,13 +578,16 @@ let is_state expr = match expr.note.it with

let is_store_arg arg = match arg.it with
| ExpA e -> is_store e
| TypA _ -> false
| TypA _
| DefA _ -> false
let is_frame_arg arg = match arg.it with
| ExpA e -> is_frame e
| TypA _ -> false
| TypA _
| DefA _ -> false
let is_state_arg arg = match arg.it with
| ExpA e -> is_state e
| TypA _ -> false
| TypA _
| DefA _ -> false

let hide_state_args args =
args
Expand Down Expand Up @@ -687,8 +690,8 @@ let remove_state algo =
let get_state_arg_opt f =
let arg = ref (TypA (Il.Ast.BoolT $ no_region)) in
let id = f $ no_region in
match Il.Env.find_def !Al.Valid.env id with
| (params, _, _) ->
match Il.Env.find_opt_def !Al.Valid.env id with
| Some (params, _, _) ->
let param_state = List.find_opt (
fun param ->
match param.it with
Expand All @@ -699,8 +702,9 @@ let get_state_arg_opt f =
) params in
if Option.is_some param_state then (
let param_state = Option.get param_state in
Option.some {param_state with it = !arg}
) else Option.none
Some {param_state with it = !arg}
) else None
| None -> None

let recover_state algo =

Expand Down Expand Up @@ -850,7 +854,7 @@ There are two kinds of auxilirary functions:

(* Case 1 *)
let handle_framed_algo a instrs =
let e_zf = match a.it with | ExpA e -> e | TypA _ -> assert false in
let e_zf = match a.it with | ExpA e -> e | TypA _ | DefA _ -> assert false in
let e_f = match e_zf.it with | TupE [_s; f] -> f | _ -> e_zf in

(* Helpers *)
Expand Down
Loading

0 comments on commit cb3a68d

Please sign in to comment.