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:
|
|
|
|
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. *)
|
|
|
|
|
|
|
|
(** Abstract syntax tree of the scope language *)
|
|
|
|
|
2022-11-21 12:46:17 +03:00
|
|
|
open Catala_utils
|
2022-08-12 23:42:39 +03:00
|
|
|
open Shared_ast
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
(** {1 Identifiers} *)
|
|
|
|
|
2022-08-25 13:09:51 +03:00
|
|
|
type location = scopelang glocation
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2023-05-17 16:44:57 +03:00
|
|
|
module LocationSet : Set.S with type elt = location Mark.pos
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
(** {1 Abstract syntax tree} *)
|
|
|
|
|
2023-05-17 17:15:00 +03:00
|
|
|
type 'm expr = (scopelang, 'm) gexpr
|
2022-08-25 13:09:51 +03:00
|
|
|
|
2022-09-23 18:43:48 +03:00
|
|
|
val locations_used : 'm expr -> LocationSet.t
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-09-23 18:43:48 +03:00
|
|
|
type 'm rule =
|
2024-03-28 19:05:12 +03:00
|
|
|
| ScopeVarDefinition of {
|
2024-04-04 11:56:56 +03:00
|
|
|
var : ScopeVar.t Mark.pos;
|
|
|
|
typ : typ;
|
|
|
|
io : Desugared.Ast.io;
|
|
|
|
e : 'm expr;
|
2024-03-28 19:05:12 +03:00
|
|
|
}
|
|
|
|
| SubScopeVarDefinition of {
|
2024-04-04 11:56:56 +03:00
|
|
|
var : ScopeVar.t Mark.pos; (** Variable within the current scope *)
|
2024-03-28 19:05:12 +03:00
|
|
|
(* scope: ScopeVar.t Mark.pos; (\** Variable pointing to the *\) *)
|
|
|
|
(* origin_var: ScopeVar.t Mark.pos;
|
|
|
|
* reentrant: bool; *)
|
2024-04-04 11:56:56 +03:00
|
|
|
var_within_origin_scope : ScopeVar.t;
|
|
|
|
typ : typ; (* non-thunked at this point for reentrant vars *)
|
|
|
|
e : 'm expr;
|
2024-03-28 19:05:12 +03:00
|
|
|
}
|
2022-09-23 18:43:48 +03:00
|
|
|
| Assertion of 'm expr
|
2022-02-04 16:34:25 +03:00
|
|
|
|
2023-11-03 19:15:55 +03:00
|
|
|
type scope_var_ty = {
|
2023-11-07 20:25:57 +03:00
|
|
|
svar_in_ty : typ;
|
|
|
|
svar_out_ty : typ;
|
|
|
|
svar_io : Desugared.Ast.io;
|
2023-11-03 19:15:55 +03:00
|
|
|
}
|
|
|
|
|
2022-09-23 18:43:48 +03:00
|
|
|
type 'm scope_decl = {
|
2021-02-11 20:48:59 +03:00
|
|
|
scope_decl_name : ScopeName.t;
|
2023-11-03 19:15:55 +03:00
|
|
|
scope_sig : scope_var_ty ScopeVar.Map.t;
|
2022-09-23 18:43:48 +03:00
|
|
|
scope_decl_rules : 'm rule list;
|
2023-05-17 16:44:57 +03:00
|
|
|
scope_options : Desugared.Ast.catala_option Mark.pos list;
|
2021-02-11 20:48:59 +03:00
|
|
|
}
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-09-23 18:43:48 +03:00
|
|
|
type 'm program = {
|
2023-09-19 12:44:18 +03:00
|
|
|
program_module_name : ModuleName.t option;
|
2023-11-20 18:01:06 +03:00
|
|
|
program_ctx : decl_ctx;
|
|
|
|
program_modules : nil scope_decl Mark.pos ScopeName.Map.t ModuleName.Map.t;
|
2023-08-10 17:52:39 +03:00
|
|
|
(* Using [nil] here ensure that program interfaces don't contain any
|
|
|
|
expressions. They won't contain any rules or topdefs, but will still have
|
|
|
|
the scope signatures needed to respect the call convention *)
|
2023-11-20 18:01:06 +03:00
|
|
|
program_scopes : 'm scope_decl Mark.pos ScopeName.Map.t;
|
|
|
|
program_topdefs : ('m expr * typ) TopdefName.Map.t;
|
2024-03-15 16:23:30 +03:00
|
|
|
program_lang : Global.backend_lang;
|
2021-02-11 20:48:59 +03:00
|
|
|
}
|
2023-12-01 01:53:38 +03:00
|
|
|
|
2022-09-26 17:32:02 +03:00
|
|
|
val type_program : 'm program -> typed program
|