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> 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. *)
|
|
|
|
|
|
|
|
(** Builds a context that allows for mapping each name to a precise uid, taking
|
|
|
|
lexical scopes into account *)
|
|
|
|
|
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 Name resolution context} *)
|
|
|
|
|
2023-05-17 16:44:57 +03:00
|
|
|
type unique_rulename = Ambiguous of Pos.t list | Unique of RuleName.t Mark.pos
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-01-03 20:39:59 +03:00
|
|
|
type scope_def_context = {
|
|
|
|
default_exception_rulename : unique_rulename option;
|
2022-11-22 22:57:59 +03:00
|
|
|
label_idmap : LabelName.t IdentName.Map.t;
|
2022-01-03 20:39:59 +03:00
|
|
|
}
|
|
|
|
|
2022-10-21 16:47:17 +03:00
|
|
|
type scope_var_or_subscope =
|
|
|
|
| ScopeVar of ScopeVar.t
|
|
|
|
| SubScope of SubScopeName.t * ScopeName.t
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
type scope_context = {
|
2022-11-22 22:57:59 +03:00
|
|
|
var_idmap : scope_var_or_subscope IdentName.Map.t;
|
2022-10-21 16:47:17 +03:00
|
|
|
(** All variables, including scope variables and subscopes *)
|
2023-04-18 11:31:44 +03:00
|
|
|
scope_defs_contexts : scope_def_context Ast.ScopeDef.Map.t;
|
2021-02-12 19:20:14 +03:00
|
|
|
(** What is the default rule to refer to for unnamed exceptions, if any *)
|
2022-11-21 12:12:45 +03:00
|
|
|
sub_scopes : ScopeName.Set.t;
|
2022-10-21 16:47:17 +03:00
|
|
|
(** Other scopes referred to by this scope. Used for dependency analysis *)
|
2021-02-11 20:48:59 +03:00
|
|
|
}
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Inside a scope, we distinguish between the variables and the subscopes. *)
|
|
|
|
|
2022-11-21 12:12:45 +03:00
|
|
|
type struct_context = typ StructField.Map.t
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Types of the fields of a struct *)
|
|
|
|
|
2022-11-21 12:12:45 +03:00
|
|
|
type enum_context = typ EnumConstructor.Map.t
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Types of the payloads of the cases of an enum *)
|
|
|
|
|
2022-02-05 02:04:19 +03:00
|
|
|
type var_sig = {
|
2022-08-25 18:29:00 +03:00
|
|
|
var_sig_typ : typ;
|
2022-02-05 02:04:19 +03:00
|
|
|
var_sig_is_condition : bool;
|
2023-02-28 16:40:05 +03:00
|
|
|
var_sig_parameters :
|
2023-05-17 16:44:57 +03:00
|
|
|
(Uid.MarkedString.info * Shared_ast.typ) list Mark.pos option;
|
2022-11-07 15:50:28 +03:00
|
|
|
var_sig_io : Surface.Ast.scope_decl_context_io;
|
2022-11-22 22:57:59 +03:00
|
|
|
var_sig_states_idmap : StateName.t IdentName.Map.t;
|
2022-08-25 13:09:51 +03:00
|
|
|
var_sig_states_list : StateName.t list;
|
2022-02-05 02:04:19 +03:00
|
|
|
}
|
|
|
|
|
2022-10-21 16:47:17 +03:00
|
|
|
(** Capitalised type names share a namespace on the user side, but may
|
|
|
|
correspond to only one of the following *)
|
|
|
|
type typedef =
|
|
|
|
| TStruct of StructName.t
|
|
|
|
| TEnum of EnumName.t
|
2022-11-17 19:13:35 +03:00
|
|
|
| TScope of ScopeName.t * scope_out_struct
|
2022-10-21 16:47:17 +03:00
|
|
|
(** Implicitly defined output struct *)
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
type context = {
|
2022-11-22 22:57:59 +03:00
|
|
|
local_var_idmap : Ast.expr Var.t IdentName.Map.t;
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Inside a definition, local variables can be introduced by functions
|
|
|
|
arguments or pattern matching *)
|
2022-11-22 22:57:59 +03:00
|
|
|
typedefs : typedef IdentName.Map.t;
|
2022-10-21 16:47:17 +03:00
|
|
|
(** Gathers the names of the scopes, structs and enums *)
|
2022-11-22 22:57:59 +03:00
|
|
|
field_idmap : StructField.t StructName.Map.t IdentName.Map.t;
|
2021-02-12 19:20:14 +03:00
|
|
|
(** The names of the struct fields. Names of fields can be shared between
|
|
|
|
different structs *)
|
2022-11-22 22:57:59 +03:00
|
|
|
constructor_idmap : EnumConstructor.t EnumName.Map.t IdentName.Map.t;
|
2021-02-12 19:20:14 +03:00
|
|
|
(** The names of the enum constructors. Constructor names can be shared
|
|
|
|
between different enums *)
|
2022-11-21 12:12:45 +03:00
|
|
|
scopes : scope_context ScopeName.Map.t; (** For each scope, its context *)
|
2023-01-23 14:19:36 +03:00
|
|
|
topdefs : TopdefName.t IdentName.Map.t; (** Global definitions *)
|
2022-11-21 12:12:45 +03:00
|
|
|
structs : struct_context StructName.Map.t;
|
|
|
|
(** For each struct, its context *)
|
|
|
|
enums : enum_context EnumName.Map.t; (** For each enum, its context *)
|
|
|
|
var_typs : var_sig ScopeVar.Map.t;
|
2022-02-05 02:04:19 +03:00
|
|
|
(** The signatures of each scope variable declared *)
|
2021-02-11 20:48:59 +03:00
|
|
|
}
|
2023-06-02 18:17:45 +03:00
|
|
|
(** Main context used throughout {!module: Desugared.From_surface} *)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
(** {1 Helpers} *)
|
|
|
|
|
|
|
|
val raise_unsupported_feature : string -> Pos.t -> 'a
|
|
|
|
(** Temporary function raising an error message saying that a feature is not
|
|
|
|
supported yet *)
|
|
|
|
|
2023-05-17 16:44:57 +03:00
|
|
|
val raise_unknown_identifier : string -> IdentName.t Mark.pos -> 'a
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Function to call whenever an identifier used somewhere has not been declared
|
|
|
|
in the program previously *)
|
|
|
|
|
2022-08-25 18:29:00 +03:00
|
|
|
val get_var_typ : context -> ScopeVar.t -> typ
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Gets the type associated to an uid *)
|
|
|
|
|
2022-08-25 13:09:51 +03:00
|
|
|
val is_var_cond : context -> ScopeVar.t -> bool
|
2022-11-07 15:50:28 +03:00
|
|
|
val get_var_io : context -> ScopeVar.t -> Surface.Ast.scope_decl_context_io
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2023-05-17 16:44:57 +03:00
|
|
|
val get_var_uid : ScopeName.t -> context -> IdentName.t Mark.pos -> ScopeVar.t
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Get the variable uid inside the scope given in argument *)
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val get_subscope_uid :
|
2023-05-17 16:44:57 +03:00
|
|
|
ScopeName.t -> context -> IdentName.t Mark.pos -> SubScopeName.t
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Get the subscope uid inside the scope given in argument *)
|
|
|
|
|
2022-11-22 22:57:59 +03:00
|
|
|
val is_subscope_uid : ScopeName.t -> context -> IdentName.t -> bool
|
2021-02-12 19:20:14 +03:00
|
|
|
(** [is_subscope_uid scope_uid ctxt y] returns true if [y] belongs to the
|
|
|
|
subscopes of [scope_uid]. *)
|
|
|
|
|
2022-08-25 13:09:51 +03:00
|
|
|
val belongs_to : context -> ScopeVar.t -> ScopeName.t -> bool
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Checks if the var_uid belongs to the scope scope_uid *)
|
|
|
|
|
2022-11-07 15:50:28 +03:00
|
|
|
val get_def_typ : context -> Ast.ScopeDef.t -> typ
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Retrieves the type of a scope definition from the context *)
|
|
|
|
|
2023-02-28 16:40:05 +03:00
|
|
|
val get_params :
|
|
|
|
context ->
|
|
|
|
Ast.ScopeDef.t ->
|
2023-05-17 16:44:57 +03:00
|
|
|
(Uid.MarkedString.info * typ) list Mark.pos option
|
2023-02-28 16:40:05 +03:00
|
|
|
|
2022-11-07 15:50:28 +03:00
|
|
|
val is_def_cond : context -> Ast.ScopeDef.t -> bool
|
|
|
|
val is_type_cond : Surface.Ast.typ -> bool
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-11-22 22:57:59 +03:00
|
|
|
val add_def_local_var : context -> IdentName.t -> context * Ast.expr Var.t
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Adds a binding to the context *)
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val get_def_key :
|
2023-01-04 18:12:36 +03:00
|
|
|
Surface.Ast.scope_var ->
|
2023-05-17 16:44:57 +03:00
|
|
|
Surface.Ast.lident Mark.pos option ->
|
2022-08-12 23:42:39 +03:00
|
|
|
ScopeName.t ->
|
2022-02-28 19:19:06 +03:00
|
|
|
context ->
|
|
|
|
Pos.t ->
|
2022-11-07 15:50:28 +03:00
|
|
|
Ast.ScopeDef.t
|
2022-02-28 19:19:06 +03:00
|
|
|
(** Usage: [get_def_key var_name var_state scope_uid ctxt pos]*)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2023-05-17 16:44:57 +03:00
|
|
|
val get_enum : context -> IdentName.t Mark.pos -> EnumName.t
|
2022-10-21 16:47:17 +03:00
|
|
|
(** Find an enum definition from the typedefs, failing if there is none or it
|
|
|
|
has a different kind *)
|
|
|
|
|
2023-05-17 16:44:57 +03:00
|
|
|
val get_struct : context -> IdentName.t Mark.pos -> StructName.t
|
2022-10-21 16:47:17 +03:00
|
|
|
(** Find a struct definition from the typedefs (possibly an implicit output
|
|
|
|
struct from a scope), failing if there is none or it has a different kind *)
|
|
|
|
|
2023-05-17 16:44:57 +03:00
|
|
|
val get_scope : context -> IdentName.t Mark.pos -> ScopeName.t
|
2022-10-21 16:47:17 +03:00
|
|
|
(** Find a scope definition from the typedefs, failing if there is none or it
|
|
|
|
has a different kind *)
|
|
|
|
|
2023-02-24 12:02:12 +03:00
|
|
|
val process_type : context -> Surface.Ast.typ -> typ
|
2023-01-23 14:19:36 +03:00
|
|
|
(** Convert a surface base type to an AST type *)
|
|
|
|
(* Note: should probably be moved to a different module *)
|
|
|
|
|
2021-02-12 19:20:14 +03:00
|
|
|
(** {1 API} *)
|
|
|
|
|
2022-11-07 15:50:28 +03:00
|
|
|
val form_context : Surface.Ast.program -> context
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Derive the context from metadata, in one pass over the declarations *)
|