catala/compiler/lcalc/compile_with_exceptions.ml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

202 lines
7.4 KiB
OCaml
Raw Normal View History

2021-01-28 02:28:28 +03:00
(* This file is part of the Catala compiler, a specification language for tax
and social benefits computation rules. Copyright (C) 2020 Inria, contributor:
Denis Merigoux <denis.merigoux@inria.fr>
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License. *)
open Utils
open Shared_ast
2021-01-28 02:28:28 +03:00
module D = Dcalc.Ast
module A = Ast
type 'm ctx = ('m D.expr, 'm A.expr Var.t) Var.Map.t
2021-12-10 01:29:49 +03:00
(** This environment contains a mapping between the variables in Dcalc and their
correspondance in Lcalc. *)
2021-01-28 02:28:28 +03:00
let translate_lit (l : D.lit) : 'm A.expr =
2021-01-28 02:28:28 +03:00
match l with
| LBool l -> ELit (LBool l)
| LInt i -> ELit (LInt i)
| LRat r -> ELit (LRat r)
| LMoney m -> ELit (LMoney m)
| LUnit -> ELit LUnit
| LDate d -> ELit (LDate d)
| LDuration d -> ELit (LDuration d)
| LEmptyError -> ERaise EmptyError
2021-01-28 02:28:28 +03:00
let thunk_expr (e : 'm A.marked_expr Bindlib.box) (mark : 'm mark) :
'm A.marked_expr Bindlib.box =
let dummy_var = Var.make "_" in
A.make_abs [| dummy_var |] e [TAny, Expr.mark_pos mark] mark
2021-01-28 20:30:01 +03:00
2021-01-28 02:28:28 +03:00
let rec translate_default
(ctx : 'm ctx)
(exceptions : 'm D.marked_expr list)
(just : 'm D.marked_expr)
(cons : 'm D.marked_expr)
(mark_default : 'm mark) : 'm A.marked_expr Bindlib.box =
2021-01-28 20:30:01 +03:00
let exceptions =
List.map
(fun except -> thunk_expr (translate_expr ctx except) mark_default)
2021-01-28 20:30:01 +03:00
exceptions
in
2021-01-28 02:28:28 +03:00
let exceptions =
2021-06-23 18:47:34 +03:00
A.make_app
(A.make_var (Var.translate A.handle_default, mark_default))
2021-01-28 02:28:28 +03:00
[
Expr.earray exceptions mark_default;
thunk_expr (translate_expr ctx just) mark_default;
thunk_expr (translate_expr ctx cons) mark_default;
2021-01-28 02:28:28 +03:00
]
mark_default
2021-01-28 02:28:28 +03:00
in
exceptions
and translate_expr (ctx : 'm ctx) (e : 'm D.marked_expr) :
'm A.marked_expr Bindlib.box =
match Marked.unmark e with
| EVar v -> A.make_var (Var.Map.find v ctx, Marked.get_mark e)
| ETuple (args, s) ->
Expr.etuple (List.map (translate_expr ctx) args) s (Marked.get_mark e)
| ETupleAccess (e1, i, s, ts) ->
Expr.etupleaccess (translate_expr ctx e1) i s ts (Marked.get_mark e)
| EInj (e1, i, en, ts) ->
Expr.einj (translate_expr ctx e1) i en ts (Marked.get_mark e)
| EMatch (e1, cases, en) ->
Expr.ematch (translate_expr ctx e1)
2022-04-25 19:00:08 +03:00
(List.map (translate_expr ctx) cases)
en (Marked.get_mark e)
| EArray es ->
Expr.earray (List.map (translate_expr ctx) es) (Marked.get_mark e)
| ELit l -> Bindlib.box (Marked.same_mark_as (translate_lit l) e)
| EOp op -> Expr.eop op (Marked.get_mark e)
| EIfThenElse (e1, e2, e3) ->
Expr.eifthenelse (translate_expr ctx e1) (translate_expr ctx e2)
(translate_expr ctx e3) (Marked.get_mark e)
| EAssert e1 -> Expr.eassert (translate_expr ctx e1) (Marked.get_mark e)
| ErrorOnEmpty arg ->
Expr.ecatch (translate_expr ctx arg) EmptyError
(Bindlib.box (Marked.same_mark_as (ERaise NoValueProvided) e))
(Marked.get_mark e)
| EApp (e1, args) ->
Expr.eapp (translate_expr ctx e1)
2022-04-25 19:00:08 +03:00
(List.map (translate_expr ctx) args)
(Marked.get_mark e)
| EAbs (binder, ts) ->
2021-01-28 02:28:28 +03:00
let vars, body = Bindlib.unmbind binder in
let ctx, lc_vars =
Array.fold_right
(fun var (ctx, lc_vars) ->
let lc_var = Var.make (Bindlib.name_of var) in
Var.Map.add var lc_var ctx, lc_var :: lc_vars)
2021-01-28 02:28:28 +03:00
vars (ctx, [])
in
let lc_vars = Array.of_list lc_vars in
let new_body = translate_expr ctx body in
let new_binder = Bindlib.bind_mvar lc_vars new_body in
Bindlib.box_apply
(fun new_binder -> Marked.same_mark_as (EAbs (new_binder, ts)) e)
2021-01-28 02:28:28 +03:00
new_binder
| EDefault ([exn], just, cons) when !Cli.optimize_flag ->
Expr.ecatch (translate_expr ctx exn) EmptyError
(Expr.eifthenelse (translate_expr ctx just) (translate_expr ctx cons)
(Bindlib.box (Marked.same_mark_as (ERaise EmptyError) e))
(Marked.get_mark e))
(Marked.get_mark e)
| EDefault (exceptions, just, cons) ->
translate_default ctx exceptions just cons (Marked.get_mark e)
2021-01-28 02:28:28 +03:00
2022-04-25 19:00:08 +03:00
let rec translate_scope_lets
(decl_ctx : decl_ctx)
(ctx : 'm ctx)
2022-08-16 17:54:42 +03:00
(scope_lets : 'm D.expr scope_body_expr) :
'm A.expr scope_body_expr Bindlib.box =
2022-04-25 19:00:08 +03:00
match scope_lets with
| Result e -> Bindlib.box_apply (fun e -> Result e) (translate_expr ctx e)
2022-04-25 19:00:08 +03:00
| ScopeLet scope_let ->
let old_scope_let_var, scope_let_next =
Bindlib.unbind scope_let.scope_let_next
in
let new_scope_let_var = Var.make (Bindlib.name_of old_scope_let_var) in
2022-04-25 19:00:08 +03:00
let new_scope_let_expr = translate_expr ctx scope_let.scope_let_expr in
let new_ctx = Var.Map.add old_scope_let_var new_scope_let_var ctx in
2022-04-25 19:00:08 +03:00
let new_scope_next = translate_scope_lets decl_ctx new_ctx scope_let_next in
let new_scope_next = Bindlib.bind_var new_scope_let_var new_scope_next in
Bindlib.box_apply2
(fun new_scope_next new_scope_let_expr ->
ScopeLet
2022-04-25 19:00:08 +03:00
{
scope_let_typ = scope_let.scope_let_typ;
scope_let_kind = scope_let.scope_let_kind;
scope_let_pos = scope_let.scope_let_pos;
2022-04-25 19:00:08 +03:00
scope_let_next = new_scope_next;
scope_let_expr = new_scope_let_expr;
})
new_scope_next new_scope_let_expr
let rec translate_scopes
(decl_ctx : decl_ctx)
(ctx : 'm ctx)
2022-08-16 17:54:42 +03:00
(scopes : 'm D.expr scopes) : 'm A.expr scopes Bindlib.box =
match scopes with
| Nil -> Bindlib.box Nil
| ScopeDef scope_def ->
2022-04-25 19:00:08 +03:00
let old_scope_var, scope_next = Bindlib.unbind scope_def.scope_next in
let new_scope_var =
Var.make (Marked.unmark (ScopeName.get_info scope_def.scope_name))
2022-04-25 19:00:08 +03:00
in
let old_scope_input_var, scope_body_expr =
Bindlib.unbind scope_def.scope_body.scope_body_expr
in
let new_scope_input_var = Var.make (Bindlib.name_of old_scope_input_var) in
let new_ctx = Var.Map.add old_scope_input_var new_scope_input_var ctx in
2022-04-25 19:00:08 +03:00
let new_scope_body_expr =
translate_scope_lets decl_ctx new_ctx scope_body_expr
in
let new_scope_body_expr =
Bindlib.bind_var new_scope_input_var new_scope_body_expr
in
2022-08-16 17:54:42 +03:00
let new_scope : 'm A.expr scope_body Bindlib.box =
2022-04-25 19:00:08 +03:00
Bindlib.box_apply
(fun new_scope_body_expr ->
{
scope_body_input_struct =
2022-04-25 19:00:08 +03:00
scope_def.scope_body.scope_body_input_struct;
scope_body_output_struct =
scope_def.scope_body.scope_body_output_struct;
scope_body_expr = new_scope_body_expr;
})
new_scope_body_expr
in
let new_ctx = Var.Map.add old_scope_var new_scope_var new_ctx in
2022-04-25 19:00:08 +03:00
let scope_next =
Bindlib.bind_var new_scope_var
(translate_scopes decl_ctx new_ctx scope_next)
in
Bindlib.box_apply2
(fun new_scope scope_next ->
ScopeDef
2022-04-25 19:00:08 +03:00
{
scope_name = scope_def.scope_name;
scope_body = new_scope;
scope_next;
})
new_scope scope_next
let translate_program (prgm : 'm D.program) : 'm A.program =
2021-01-28 15:58:59 +03:00
{
2022-04-25 19:00:08 +03:00
scopes =
Bindlib.unbox (translate_scopes prgm.decl_ctx Var.Map.empty prgm.scopes);
2021-01-29 13:42:19 +03:00
decl_ctx = prgm.decl_ctx;
2021-01-28 15:58:59 +03:00
}