2021-02-12 19:20:14 +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. *)
|
|
|
|
|
|
|
|
(** Abstract syntax tree of the desugared representation *)
|
|
|
|
|
|
|
|
open Utils
|
2022-08-12 23:42:39 +03:00
|
|
|
open Shared_ast
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
(** {1 Names, Maps and Keys} *)
|
|
|
|
|
|
|
|
module IdentMap : Map.S with type key = String.t
|
|
|
|
module RuleName : Uid.Id with type info = Uid.MarkedString.info
|
|
|
|
module RuleMap : Map.S with type key = RuleName.t
|
|
|
|
module RuleSet : Set.S with type elt = RuleName.t
|
2022-01-04 20:19:15 +03:00
|
|
|
module LabelName : Uid.Id with type info = Uid.MarkedString.info
|
|
|
|
module LabelMap : Map.S with type key = LabelName.t
|
|
|
|
module LabelSet : Set.S with type elt = LabelName.t
|
2022-02-28 19:19:06 +03:00
|
|
|
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Inside a scope, a definition can refer either to a scope def, or a subscope
|
|
|
|
def *)
|
|
|
|
module ScopeDef : sig
|
|
|
|
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
|
2021-02-12 20:16:06 +03:00
|
|
|
|
2021-02-12 19:20:14 +03:00
|
|
|
val compare : t -> t -> int
|
|
|
|
val get_position : t -> Pos.t
|
|
|
|
val format_t : Format.formatter -> t -> unit
|
|
|
|
val hash : t -> int
|
|
|
|
end
|
|
|
|
|
|
|
|
module ScopeDefMap : Map.S with type key = ScopeDef.t
|
|
|
|
module ScopeDefSet : Set.S with type elt = ScopeDef.t
|
|
|
|
|
|
|
|
(** {1 AST} *)
|
|
|
|
|
2022-08-25 17:08:08 +03:00
|
|
|
(** {2 Expressions} *)
|
2022-02-28 19:19:06 +03:00
|
|
|
|
2022-08-25 17:35:08 +03:00
|
|
|
type naked_expr = (desugared, Pos.t) naked_gexpr
|
2022-08-25 17:31:32 +03:00
|
|
|
(** See {!type:Shared_ast.naked_gexpr} for the complete definition *)
|
2022-02-28 20:34:32 +03:00
|
|
|
|
2022-08-25 17:35:08 +03:00
|
|
|
and expr = naked_expr Marked.pos
|
2022-02-28 20:34:32 +03:00
|
|
|
|
2022-08-25 17:08:08 +03:00
|
|
|
type location = desugared glocation
|
2022-02-28 20:34:32 +03:00
|
|
|
|
2022-08-25 17:08:08 +03:00
|
|
|
module LocationSet : Set.S with type elt = location Marked.pos
|
2022-08-25 17:35:08 +03:00
|
|
|
module ExprMap : Map.S with type key = expr
|
2022-02-28 20:34:32 +03:00
|
|
|
|
|
|
|
(** {2 Rules and scopes}*)
|
|
|
|
|
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
|
|
|
|
|
2021-02-11 20:48:59 +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;
|
|
|
|
rule_parameter : (naked_expr Var.t * marked_typ) option;
|
2022-07-13 16:00:57 +03:00
|
|
|
rule_exception : exception_situation;
|
|
|
|
rule_label : label_situation;
|
2021-02-11 20:48:59 +03:00
|
|
|
}
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-05-25 15:41:04 +03:00
|
|
|
module Rule : Set.OrderedType with type t = rule
|
|
|
|
|
2022-08-25 13:09:51 +03:00
|
|
|
val empty_rule : Pos.t -> typ Marked.pos option -> rule
|
|
|
|
val always_false_rule : Pos.t -> typ Marked.pos option -> rule
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-08-25 17:35:08 +03:00
|
|
|
type assertion = naked_expr Marked.pos Bindlib.box
|
2021-02-11 20:48:59 +03:00
|
|
|
type variation_typ = Increasing | Decreasing
|
|
|
|
type reference_typ = Decree | Law
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
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
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-01-04 20:19:15 +03:00
|
|
|
type scope_def = {
|
|
|
|
scope_def_rules : rule RuleMap.t;
|
2022-08-25 13:09:51 +03:00
|
|
|
scope_def_typ : typ Marked.pos;
|
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
|
|
|
|
|
2021-02-11 20:48:59 +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;
|
2021-02-11 20:48:59 +03:00
|
|
|
scope_assertions : assertion list;
|
|
|
|
scope_meta_assertions : meta_assertion list;
|
|
|
|
}
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
type program = {
|
|
|
|
program_scopes : scope Scopelang.Ast.ScopeMap.t;
|
2022-08-25 17:08:08 +03:00
|
|
|
program_ctx : decl_ctx;
|
2021-02-11 20:48:59 +03:00
|
|
|
}
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
(** {1 Helpers} *)
|
|
|
|
|
2022-08-25 17:35:08 +03:00
|
|
|
val locations_used : naked_expr Marked.pos -> LocationSet.t
|
2021-02-12 19:20:14 +03:00
|
|
|
val free_variables : rule RuleMap.t -> Pos.t ScopeDefMap.t
|