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 *)
|
|
|
|
|
|
|
|
open Utils
|
|
|
|
|
|
|
|
(** {1 Name resolution context} *)
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
type ident = string
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
type typ = Scopelang.Ast.typ
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-01-05 17:57:18 +03:00
|
|
|
type unique_rulename = Ambiguous of Pos.t list | Unique of Desugared.Ast.RuleName.t Pos.marked
|
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-01-04 20:19:15 +03:00
|
|
|
label_idmap : Desugared.Ast.LabelName.t Desugared.Ast.IdentMap.t;
|
|
|
|
label_groups : Desugared.Ast.RuleSet.t Desugared.Ast.LabelMap.t;
|
2022-01-03 20:39:59 +03:00
|
|
|
}
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
type scope_context = {
|
2021-02-12 19:20:14 +03:00
|
|
|
var_idmap : Scopelang.Ast.ScopeVar.t Desugared.Ast.IdentMap.t; (** Scope variables *)
|
2022-01-03 20:39:59 +03:00
|
|
|
scope_defs_contexts : scope_def_context Desugared.Ast.ScopeDefMap.t;
|
2021-02-12 19:20:14 +03:00
|
|
|
(** What is the default rule to refer to for unnamed exceptions, if any *)
|
2021-02-11 20:48:59 +03:00
|
|
|
sub_scopes_idmap : Scopelang.Ast.SubScopeName.t Desugared.Ast.IdentMap.t;
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Sub-scopes variables *)
|
2021-02-11 20:48:59 +03:00
|
|
|
sub_scopes : Scopelang.Ast.ScopeName.t Scopelang.Ast.SubScopeMap.t;
|
2021-02-12 19:20:14 +03:00
|
|
|
(** To what scope sub-scopes refer to? *)
|
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. *)
|
|
|
|
|
|
|
|
type struct_context = typ Pos.marked Scopelang.Ast.StructFieldMap.t
|
|
|
|
(** Types of the fields of a struct *)
|
|
|
|
|
|
|
|
type enum_context = typ Pos.marked Scopelang.Ast.EnumConstructorMap.t
|
|
|
|
(** Types of the payloads of the cases of an enum *)
|
|
|
|
|
2022-02-05 02:04:19 +03:00
|
|
|
type var_sig = {
|
|
|
|
var_sig_typ : typ Pos.marked;
|
|
|
|
var_sig_is_condition : bool;
|
|
|
|
var_sig_visibility : Ast.scope_decl_context_item_attribute Pos.marked;
|
|
|
|
}
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
type context = {
|
|
|
|
local_var_idmap : Scopelang.Ast.Var.t Desugared.Ast.IdentMap.t;
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Inside a definition, local variables can be introduced by functions arguments or pattern
|
|
|
|
matching *)
|
|
|
|
scope_idmap : Scopelang.Ast.ScopeName.t Desugared.Ast.IdentMap.t; (** The names of the scopes *)
|
2021-02-11 20:48:59 +03:00
|
|
|
struct_idmap : Scopelang.Ast.StructName.t Desugared.Ast.IdentMap.t;
|
2021-02-12 19:20:14 +03:00
|
|
|
(** The names of the structs *)
|
|
|
|
field_idmap : Scopelang.Ast.StructFieldName.t Scopelang.Ast.StructMap.t Desugared.Ast.IdentMap.t;
|
|
|
|
(** The names of the struct fields. Names of fields can be shared between different structs *)
|
|
|
|
enum_idmap : Scopelang.Ast.EnumName.t Desugared.Ast.IdentMap.t; (** The names of the enums *)
|
2021-02-11 20:48:59 +03:00
|
|
|
constructor_idmap :
|
2021-02-12 19:20:14 +03:00
|
|
|
Scopelang.Ast.EnumConstructor.t Scopelang.Ast.EnumMap.t Desugared.Ast.IdentMap.t;
|
|
|
|
(** The names of the enum constructors. Constructor names can be shared between different
|
|
|
|
enums *)
|
|
|
|
scopes : scope_context Scopelang.Ast.ScopeMap.t; (** For each scope, its context *)
|
|
|
|
structs : struct_context Scopelang.Ast.StructMap.t; (** For each struct, its context *)
|
|
|
|
enums : enum_context Scopelang.Ast.EnumMap.t; (** For each enum, its context *)
|
2022-02-05 02:04:19 +03:00
|
|
|
var_typs : var_sig Scopelang.Ast.ScopeVarMap.t;
|
|
|
|
(** The signatures of each scope variable declared *)
|
2021-02-11 20:48:59 +03:00
|
|
|
}
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Main context used throughout {!module: Surface.Desugaring} *)
|
|
|
|
|
|
|
|
(** {1 Helpers} *)
|
|
|
|
|
|
|
|
val raise_unsupported_feature : string -> Pos.t -> 'a
|
2021-02-12 20:16:06 +03:00
|
|
|
(** Temporary function raising an error message saying that a feature is not supported yet *)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2021-02-12 20:16:06 +03:00
|
|
|
val raise_unknown_identifier : string -> ident Pos.marked -> '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 *)
|
|
|
|
|
|
|
|
val get_var_typ : context -> Scopelang.Ast.ScopeVar.t -> typ Pos.marked
|
2021-02-12 20:16:06 +03:00
|
|
|
(** Gets the type associated to an uid *)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val is_var_cond : context -> Scopelang.Ast.ScopeVar.t -> bool
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-02-05 02:04:19 +03:00
|
|
|
val get_var_visibility :
|
|
|
|
context -> Scopelang.Ast.ScopeVar.t -> Ast.scope_decl_context_item_attribute Pos.marked
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val get_var_uid :
|
2021-02-12 20:16:06 +03:00
|
|
|
Scopelang.Ast.ScopeName.t -> context -> ident Pos.marked -> Scopelang.Ast.ScopeVar.t
|
|
|
|
(** Get the variable uid inside the scope given in argument *)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val get_subscope_uid :
|
2021-02-12 20:16:06 +03:00
|
|
|
Scopelang.Ast.ScopeName.t -> context -> ident Pos.marked -> Scopelang.Ast.SubScopeName.t
|
|
|
|
(** Get the subscope uid inside the scope given in argument *)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val is_subscope_uid : Scopelang.Ast.ScopeName.t -> context -> ident -> bool
|
2021-02-12 20:16:06 +03:00
|
|
|
(** [is_subscope_uid scope_uid ctxt y] returns true if [y] belongs to the subscopes of [scope_uid]. *)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2021-02-12 20:16:06 +03:00
|
|
|
val belongs_to : context -> Scopelang.Ast.ScopeVar.t -> Scopelang.Ast.ScopeName.t -> bool
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Checks if the var_uid belongs to the scope scope_uid *)
|
|
|
|
|
|
|
|
val get_def_typ : context -> Desugared.Ast.ScopeDef.t -> typ Pos.marked
|
2021-02-12 20:16:06 +03:00
|
|
|
(** Retrieves the type of a scope definition from the context *)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val is_def_cond : context -> Desugared.Ast.ScopeDef.t -> bool
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-01-04 20:19:15 +03:00
|
|
|
val label_groups :
|
|
|
|
context ->
|
|
|
|
Scopelang.Ast.ScopeName.t ->
|
|
|
|
Desugared.Ast.ScopeDef.t ->
|
|
|
|
Desugared.Ast.RuleSet.t Desugared.Ast.LabelMap.t
|
|
|
|
|
2021-02-12 19:20:14 +03:00
|
|
|
val is_type_cond : Ast.typ Pos.marked -> bool
|
|
|
|
|
2021-02-12 20:16:06 +03:00
|
|
|
val add_def_local_var : context -> ident Pos.marked -> context * Scopelang.Ast.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 :
|
2021-02-12 20:16:06 +03:00
|
|
|
Ast.qident -> Scopelang.Ast.ScopeName.t -> context -> Pos.t -> Desugared.Ast.ScopeDef.t
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
(** {1 API} *)
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val form_context : Ast.program -> context
|
2021-02-12 20:16:06 +03:00
|
|
|
(** Derive the context from metadata, in one pass over the declarations *)
|