2020-06-22 17:16:55 +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:
|
|
|
|
Nicolas Chataing <nicolas.chataing@ens.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. *)
|
|
|
|
|
2020-12-14 19:00:42 +03:00
|
|
|
(** Abstract syntax tree of the desugared representation *)
|
|
|
|
|
2021-01-21 23:33:04 +03:00
|
|
|
open Utils
|
2022-08-12 23:42:39 +03:00
|
|
|
open Shared_ast
|
2020-11-23 14:20:38 +03:00
|
|
|
|
2020-12-14 19:00:42 +03:00
|
|
|
(** {1 Names, Maps and Keys} *)
|
|
|
|
|
|
|
|
module IdentMap : Map.S with type key = String.t = Map.Make (String)
|
|
|
|
|
|
|
|
module RuleName : Uid.Id with type info = Uid.MarkedString.info =
|
|
|
|
Uid.Make (Uid.MarkedString) ()
|
2020-11-25 16:35:26 +03:00
|
|
|
|
2020-12-14 19:00:42 +03:00
|
|
|
module RuleMap : Map.S with type key = RuleName.t = Map.Make (RuleName)
|
2020-12-18 17:59:15 +03:00
|
|
|
module RuleSet : Set.S with type elt = RuleName.t = Set.Make (RuleName)
|
|
|
|
|
2022-01-04 20:19:15 +03:00
|
|
|
module LabelName : Uid.Id with type info = Uid.MarkedString.info =
|
|
|
|
Uid.Make (Uid.MarkedString) ()
|
|
|
|
|
|
|
|
module LabelMap : Map.S with type key = LabelName.t = Map.Make (LabelName)
|
|
|
|
module LabelSet : Set.S with type elt = LabelName.t = Set.Make (LabelName)
|
2022-02-28 19:19:06 +03:00
|
|
|
|
2020-11-23 14:20:38 +03:00
|
|
|
(** Inside a scope, a definition can refer either to a scope def, or a subscope
|
|
|
|
def *)
|
|
|
|
module ScopeDef = struct
|
|
|
|
type t =
|
2022-02-28 19:19:06 +03:00
|
|
|
| Var of ScopeVar.t * StateName.t option
|
2022-08-17 18:14:29 +03:00
|
|
|
| SubScopeVar of SubScopeName.t * ScopeVar.t
|
2022-02-28 19:19:06 +03:00
|
|
|
(** In this case, the [ScopeVar.t] lives inside the context of the
|
|
|
|
subscope's original declaration *)
|
2020-11-23 14:20:38 +03:00
|
|
|
|
|
|
|
let compare x y =
|
|
|
|
match x, y with
|
2022-02-28 19:19:06 +03:00
|
|
|
| Var (x, None), Var (y, None)
|
|
|
|
| Var (x, Some _), Var (y, None)
|
|
|
|
| Var (x, None), Var (y, Some _)
|
|
|
|
| Var (x, _), SubScopeVar (_, y)
|
|
|
|
| SubScopeVar (_, x), Var (y, _) ->
|
|
|
|
ScopeVar.compare x y
|
|
|
|
| Var (x, Some sx), Var (y, Some sy) ->
|
|
|
|
let cmp = ScopeVar.compare x y in
|
|
|
|
if cmp = 0 then StateName.compare sx sy else cmp
|
2021-01-11 17:19:05 +03:00
|
|
|
| SubScopeVar (x', x), SubScopeVar (y', y) ->
|
2022-08-17 18:14:29 +03:00
|
|
|
let cmp = SubScopeName.compare x' y' in
|
2022-02-28 19:19:06 +03:00
|
|
|
if cmp = 0 then ScopeVar.compare x y else cmp
|
2020-11-23 14:20:38 +03:00
|
|
|
|
2020-12-18 17:59:15 +03:00
|
|
|
let get_position x =
|
|
|
|
match x with
|
2022-05-30 12:20:48 +03:00
|
|
|
| Var (x, None) -> Marked.get_mark (ScopeVar.get_info x)
|
|
|
|
| Var (_, Some sx) -> Marked.get_mark (StateName.get_info sx)
|
2022-08-17 18:14:29 +03:00
|
|
|
| SubScopeVar (x, _) -> Marked.get_mark (SubScopeName.get_info x)
|
2020-12-18 17:59:15 +03:00
|
|
|
|
2020-11-25 13:53:56 +03:00
|
|
|
let format_t fmt x =
|
2020-11-23 14:20:38 +03:00
|
|
|
match x with
|
2022-02-28 19:19:06 +03:00
|
|
|
| Var (v, None) -> ScopeVar.format_t fmt v
|
|
|
|
| Var (v, Some sv) ->
|
|
|
|
Format.fprintf fmt "%a.%a" ScopeVar.format_t v StateName.format_t sv
|
2020-11-23 14:20:38 +03:00
|
|
|
| SubScopeVar (s, v) ->
|
2022-08-17 18:14:29 +03:00
|
|
|
Format.fprintf fmt "%a.%a" SubScopeName.format_t s ScopeVar.format_t v
|
2020-11-23 14:20:38 +03:00
|
|
|
|
2020-11-23 18:12:45 +03:00
|
|
|
let hash x =
|
|
|
|
match x with
|
2022-02-28 19:19:06 +03:00
|
|
|
| Var (v, None) -> ScopeVar.hash v
|
|
|
|
| Var (v, Some sv) -> Int.logxor (ScopeVar.hash v) (StateName.hash sv)
|
2022-08-17 18:14:29 +03:00
|
|
|
| SubScopeVar (w, v) -> Int.logxor (SubScopeName.hash w) (ScopeVar.hash v)
|
2020-11-23 14:20:38 +03:00
|
|
|
end
|
|
|
|
|
2020-12-14 19:00:42 +03:00
|
|
|
module ScopeDefMap : Map.S with type key = ScopeDef.t = Map.Make (ScopeDef)
|
|
|
|
module ScopeDefSet : Set.S with type elt = ScopeDef.t = Set.Make (ScopeDef)
|
|
|
|
|
|
|
|
(** {1 AST} *)
|
2020-06-22 17:16:55 +03:00
|
|
|
|
2022-08-25 17:08:08 +03:00
|
|
|
type location = desugared glocation
|
2022-02-28 19:19:06 +03:00
|
|
|
|
2022-05-30 12:20:48 +03:00
|
|
|
module LocationSet : Set.S with type elt = location Marked.pos =
|
2022-02-28 19:19:06 +03:00
|
|
|
Set.Make (struct
|
2022-05-30 12:20:48 +03:00
|
|
|
type t = location Marked.pos
|
2022-02-28 19:19:06 +03:00
|
|
|
|
2022-08-25 17:08:08 +03:00
|
|
|
let compare = Expr.compare_location
|
2022-02-28 19:19:06 +03:00
|
|
|
end)
|
|
|
|
|
2022-08-25 17:35:08 +03:00
|
|
|
type naked_expr = (desugared, Pos.t) naked_gexpr
|
|
|
|
type expr = naked_expr Marked.pos
|
2022-05-25 15:41:04 +03:00
|
|
|
|
2022-08-25 17:08:08 +03:00
|
|
|
module ExprMap = Map.Make (struct
|
2022-08-25 17:35:08 +03:00
|
|
|
type t = expr
|
2022-02-28 20:34:32 +03:00
|
|
|
|
2022-08-25 17:08:08 +03:00
|
|
|
let compare = Expr.compare
|
|
|
|
end)
|
2022-02-28 20:34:32 +03:00
|
|
|
|
2022-07-13 16:00:57 +03:00
|
|
|
type exception_situation =
|
|
|
|
| BaseCase
|
|
|
|
| ExceptionToLabel of LabelName.t Marked.pos
|
|
|
|
| ExceptionToRule of RuleName.t Marked.pos
|
|
|
|
|
|
|
|
type label_situation = ExplicitlyLabeled of LabelName.t Marked.pos | Unlabeled
|
|
|
|
|
2020-11-25 12:10:27 +03:00
|
|
|
type rule = {
|
2022-01-04 20:19:15 +03:00
|
|
|
rule_id : RuleName.t;
|
2022-08-25 17:35:08 +03:00
|
|
|
rule_just : expr Bindlib.box;
|
|
|
|
rule_cons : expr Bindlib.box;
|
2022-08-25 20:46:13 +03:00
|
|
|
rule_parameter : (expr Var.t * typ) option;
|
2022-07-13 16:00:57 +03:00
|
|
|
rule_exception : exception_situation;
|
|
|
|
rule_label : label_situation;
|
2020-11-25 12:10:27 +03:00
|
|
|
}
|
2020-06-22 17:16:55 +03:00
|
|
|
|
2022-05-25 15:41:04 +03:00
|
|
|
module Rule = struct
|
|
|
|
type t = rule
|
|
|
|
|
|
|
|
(** Structural equality (otherwise, you should just compare the [rule_id]
|
|
|
|
fields) *)
|
|
|
|
let compare r1 r2 =
|
|
|
|
match r1.rule_parameter, r2.rule_parameter with
|
|
|
|
| None, None -> (
|
2022-08-25 17:08:08 +03:00
|
|
|
let j1 = Bindlib.unbox r1.rule_just in
|
|
|
|
let j2 = Bindlib.unbox r2.rule_just in
|
2022-05-25 15:41:04 +03:00
|
|
|
match Expr.compare j1 j2 with
|
|
|
|
| 0 ->
|
2022-08-25 17:08:08 +03:00
|
|
|
let c1 = Bindlib.unbox r1.rule_cons in
|
|
|
|
let c2 = Bindlib.unbox r2.rule_cons in
|
2022-05-25 15:41:04 +03:00
|
|
|
Expr.compare c1 c2
|
|
|
|
| n -> n)
|
2022-08-25 13:09:51 +03:00
|
|
|
| Some (v1, t1), Some (v2, t2) -> (
|
|
|
|
match Shared_ast.Expr.compare_typ t1 t2 with
|
2022-05-25 15:41:04 +03:00
|
|
|
| 0 -> (
|
|
|
|
let open Bindlib in
|
|
|
|
let b1 = unbox (bind_var v1 r1.rule_just) in
|
|
|
|
let b2 = unbox (bind_var v2 r2.rule_just) in
|
2022-08-25 17:08:08 +03:00
|
|
|
let _, j1, j2 = unbind2 b1 b2 in
|
2022-05-25 15:41:04 +03:00
|
|
|
match Expr.compare j1 j2 with
|
|
|
|
| 0 ->
|
|
|
|
let b1 = unbox (bind_var v1 r1.rule_cons) in
|
|
|
|
let b2 = unbox (bind_var v2 r2.rule_cons) in
|
2022-08-25 17:08:08 +03:00
|
|
|
let _, c1, c2 = unbind2 b1 b2 in
|
2022-05-25 15:41:04 +03:00
|
|
|
Expr.compare c1 c2
|
|
|
|
| n -> n)
|
|
|
|
| n -> n)
|
|
|
|
| None, Some _ -> -1
|
|
|
|
| Some _, None -> 1
|
|
|
|
end
|
|
|
|
|
2022-08-25 18:29:00 +03:00
|
|
|
let empty_rule (pos : Pos.t) (have_parameter : typ option) : rule =
|
2020-11-25 12:10:27 +03:00
|
|
|
{
|
2022-08-12 23:42:39 +03:00
|
|
|
rule_just = Bindlib.box (ELit (LBool false), pos);
|
|
|
|
rule_cons = Bindlib.box (ELit LEmptyError, pos);
|
2022-01-04 20:19:15 +03:00
|
|
|
rule_parameter =
|
2022-02-28 20:34:32 +03:00
|
|
|
(match have_parameter with
|
2022-06-03 17:40:03 +03:00
|
|
|
| Some typ -> Some (Var.make "dummy", typ)
|
2022-02-28 20:34:32 +03:00
|
|
|
| None -> None);
|
2022-07-13 16:00:57 +03:00
|
|
|
rule_exception = BaseCase;
|
2022-01-04 20:19:15 +03:00
|
|
|
rule_id = RuleName.fresh ("empty", pos);
|
2022-07-13 16:00:57 +03:00
|
|
|
rule_label = Unlabeled;
|
2020-11-25 12:10:27 +03:00
|
|
|
}
|
2020-08-10 00:01:42 +03:00
|
|
|
|
2022-08-25 20:46:13 +03:00
|
|
|
let always_false_rule (pos : Pos.t) (have_parameter : typ option) : rule =
|
2020-12-31 02:28:26 +03:00
|
|
|
{
|
2022-08-12 23:42:39 +03:00
|
|
|
rule_just = Bindlib.box (ELit (LBool true), pos);
|
|
|
|
rule_cons = Bindlib.box (ELit (LBool false), pos);
|
2022-01-04 20:19:15 +03:00
|
|
|
rule_parameter =
|
2022-02-28 20:34:32 +03:00
|
|
|
(match have_parameter with
|
2022-06-03 17:40:03 +03:00
|
|
|
| Some typ -> Some (Var.make "dummy", typ)
|
2022-02-28 20:34:32 +03:00
|
|
|
| None -> None);
|
2022-07-13 16:00:57 +03:00
|
|
|
rule_exception = BaseCase;
|
2022-01-04 20:19:15 +03:00
|
|
|
rule_id = RuleName.fresh ("always_false", pos);
|
2022-07-13 16:00:57 +03:00
|
|
|
rule_label = Unlabeled;
|
2020-12-31 02:28:26 +03:00
|
|
|
}
|
|
|
|
|
2022-08-25 17:35:08 +03:00
|
|
|
type assertion = expr Bindlib.box
|
2020-06-22 17:16:55 +03:00
|
|
|
type variation_typ = Increasing | Decreasing
|
|
|
|
type reference_typ = Decree | Law
|
|
|
|
|
|
|
|
type meta_assertion =
|
2022-05-30 12:20:48 +03:00
|
|
|
| FixedBy of reference_typ Marked.pos
|
|
|
|
| VariesWith of unit * variation_typ Marked.pos option
|
2020-06-22 17:16:55 +03:00
|
|
|
|
2022-01-04 20:19:15 +03:00
|
|
|
type scope_def = {
|
|
|
|
scope_def_rules : rule RuleMap.t;
|
2022-08-25 18:29:00 +03:00
|
|
|
scope_def_typ : typ;
|
2022-01-04 20:19:15 +03:00
|
|
|
scope_def_is_condition : bool;
|
2022-02-07 12:30:36 +03:00
|
|
|
scope_def_io : Scopelang.Ast.io;
|
2022-01-04 20:19:15 +03:00
|
|
|
}
|
|
|
|
|
2022-02-28 19:19:06 +03:00
|
|
|
type var_or_states = WholeVar | States of StateName.t list
|
|
|
|
|
2020-06-22 17:16:55 +03:00
|
|
|
type scope = {
|
2022-02-28 19:19:06 +03:00
|
|
|
scope_vars : var_or_states ScopeVarMap.t;
|
2022-08-12 23:42:39 +03:00
|
|
|
scope_sub_scopes : ScopeName.t Scopelang.Ast.SubScopeMap.t;
|
|
|
|
scope_uid : ScopeName.t;
|
2022-01-04 20:19:15 +03:00
|
|
|
scope_defs : scope_def ScopeDefMap.t;
|
2020-06-22 17:16:55 +03:00
|
|
|
scope_assertions : assertion list;
|
2020-09-13 01:33:56 +03:00
|
|
|
scope_meta_assertions : meta_assertion list;
|
2020-06-22 17:16:55 +03:00
|
|
|
}
|
|
|
|
|
2020-12-04 18:40:17 +03:00
|
|
|
type program = {
|
|
|
|
program_scopes : scope Scopelang.Ast.ScopeMap.t;
|
2022-08-25 17:08:08 +03:00
|
|
|
program_ctx : decl_ctx;
|
2020-12-04 18:40:17 +03:00
|
|
|
}
|
2020-11-25 13:53:56 +03:00
|
|
|
|
2022-08-25 17:35:08 +03:00
|
|
|
let rec locations_used (e : expr) : LocationSet.t =
|
2022-05-30 12:20:48 +03:00
|
|
|
match Marked.unmark e with
|
|
|
|
| ELocation l -> LocationSet.singleton (l, Marked.get_mark e)
|
2022-02-28 19:19:06 +03:00
|
|
|
| EVar _ | ELit _ | EOp _ -> LocationSet.empty
|
2022-06-03 17:40:03 +03:00
|
|
|
| EAbs (binder, _) ->
|
2022-02-28 19:19:06 +03:00
|
|
|
let _, body = Bindlib.unmbind binder in
|
|
|
|
locations_used body
|
|
|
|
| EStruct (_, es) ->
|
2022-08-17 18:14:29 +03:00
|
|
|
StructFieldMap.fold
|
2022-02-28 19:19:06 +03:00
|
|
|
(fun _ e' acc -> LocationSet.union acc (locations_used e'))
|
|
|
|
es LocationSet.empty
|
|
|
|
| EStructAccess (e1, _, _) -> locations_used e1
|
|
|
|
| EEnumInj (e1, _, _) -> locations_used e1
|
2022-08-25 17:08:08 +03:00
|
|
|
| EMatchS (e1, _, es) ->
|
2022-08-17 18:14:29 +03:00
|
|
|
EnumConstructorMap.fold
|
2022-02-28 19:19:06 +03:00
|
|
|
(fun _ e' acc -> LocationSet.union acc (locations_used e'))
|
|
|
|
es (locations_used e1)
|
|
|
|
| EApp (e1, args) ->
|
|
|
|
List.fold_left
|
|
|
|
(fun acc arg -> LocationSet.union (locations_used arg) acc)
|
|
|
|
(locations_used e1) args
|
|
|
|
| EIfThenElse (e1, e2, e3) ->
|
|
|
|
LocationSet.union (locations_used e1)
|
|
|
|
(LocationSet.union (locations_used e2) (locations_used e3))
|
|
|
|
| EDefault (excepts, just, cons) ->
|
|
|
|
List.fold_left
|
|
|
|
(fun acc except -> LocationSet.union (locations_used except) acc)
|
|
|
|
(LocationSet.union (locations_used just) (locations_used cons))
|
|
|
|
excepts
|
|
|
|
| EArray es ->
|
|
|
|
List.fold_left
|
|
|
|
(fun acc e' -> LocationSet.union acc (locations_used e'))
|
|
|
|
LocationSet.empty es
|
|
|
|
| ErrorOnEmpty e' -> locations_used e'
|
|
|
|
|
2020-11-27 13:37:21 +03:00
|
|
|
let free_variables (def : rule RuleMap.t) : Pos.t ScopeDefMap.t =
|
2022-02-28 19:19:06 +03:00
|
|
|
let add_locs (acc : Pos.t ScopeDefMap.t) (locs : LocationSet.t) :
|
|
|
|
Pos.t ScopeDefMap.t =
|
|
|
|
LocationSet.fold
|
2020-12-03 23:02:28 +03:00
|
|
|
(fun (loc, loc_pos) acc ->
|
2020-11-27 13:37:21 +03:00
|
|
|
ScopeDefMap.add
|
2020-11-25 13:53:56 +03:00
|
|
|
(match loc with
|
2022-08-25 17:08:08 +03:00
|
|
|
| DesugaredScopeVar (v, st) -> ScopeDef.Var (Marked.unmark v, st)
|
2022-02-28 19:19:06 +03:00
|
|
|
| SubScopeVar (_, sub_index, sub_var) ->
|
2022-05-30 12:20:48 +03:00
|
|
|
ScopeDef.SubScopeVar (Marked.unmark sub_index, Marked.unmark sub_var))
|
2020-11-27 13:37:21 +03:00
|
|
|
loc_pos acc)
|
2020-12-03 23:02:28 +03:00
|
|
|
locs acc
|
2020-11-25 13:53:56 +03:00
|
|
|
in
|
2020-11-25 16:35:26 +03:00
|
|
|
RuleMap.fold
|
|
|
|
(fun _ rule acc ->
|
2020-11-27 18:27:10 +03:00
|
|
|
let locs =
|
2022-02-28 19:19:06 +03:00
|
|
|
LocationSet.union
|
|
|
|
(locations_used (Bindlib.unbox rule.rule_just))
|
|
|
|
(locations_used (Bindlib.unbox rule.rule_cons))
|
2020-11-27 18:27:10 +03:00
|
|
|
in
|
2020-11-25 13:53:56 +03:00
|
|
|
add_locs acc locs)
|
2020-11-27 13:37:21 +03:00
|
|
|
def ScopeDefMap.empty
|