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
|
2022-08-12 23:42:39 +03:00
|
|
|
open Shared_ast
|
2021-02-12 19:20:14 +03:00
|
|
|
|
|
|
|
(** {1 Name resolution context} *)
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
type ident = string
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-01-05 17:57:18 +03:00
|
|
|
type unique_rulename =
|
|
|
|
| Ambiguous of Pos.t list
|
2022-05-30 12:20:48 +03:00
|
|
|
| Unique of Desugared.Ast.RuleName.t Marked.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-01-04 20:19:15 +03:00
|
|
|
label_idmap : Desugared.Ast.LabelName.t Desugared.Ast.IdentMap.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-10-21 16:47:17 +03:00
|
|
|
var_idmap : scope_var_or_subscope Desugared.Ast.IdentMap.t;
|
|
|
|
(** All variables, including scope variables and subscopes *)
|
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 *)
|
2022-10-21 16:47:17 +03:00
|
|
|
sub_scopes : ScopeSet.t;
|
|
|
|
(** 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-08-25 18:29:00 +03:00
|
|
|
type struct_context = typ StructFieldMap.t
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Types of the fields of a struct *)
|
|
|
|
|
2022-08-25 18:29:00 +03:00
|
|
|
type enum_context = typ EnumConstructorMap.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;
|
2022-02-07 12:30:36 +03:00
|
|
|
var_sig_io : Ast.scope_decl_context_io;
|
2022-08-25 13:09:51 +03:00
|
|
|
var_sig_states_idmap : StateName.t Desugared.Ast.IdentMap.t;
|
|
|
|
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
|
|
|
|
| TScope of ScopeName.t * StructName.t
|
|
|
|
(** Implicitly defined output struct *)
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
type context = {
|
2022-08-25 20:46:13 +03:00
|
|
|
local_var_idmap : Desugared.Ast.expr 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 *)
|
2022-10-21 16:47:17 +03:00
|
|
|
typedefs : typedef Desugared.Ast.IdentMap.t;
|
|
|
|
(** Gathers the names of the scopes, structs and enums *)
|
2022-08-12 23:42:39 +03:00
|
|
|
field_idmap : StructFieldName.t StructMap.t Desugared.Ast.IdentMap.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-08-12 23:42:39 +03:00
|
|
|
constructor_idmap : EnumConstructor.t EnumMap.t Desugared.Ast.IdentMap.t;
|
2021-02-12 19:20:14 +03:00
|
|
|
(** The names of the enum constructors. Constructor names can be shared
|
|
|
|
between different enums *)
|
2022-09-14 16:36:24 +03:00
|
|
|
scopes : scope_context ScopeMap.t; (** For each scope, its context *)
|
2022-08-12 23:42:39 +03:00
|
|
|
structs : struct_context StructMap.t; (** For each struct, its context *)
|
2021-02-12 19:20:14 +03:00
|
|
|
enums : enum_context EnumMap.t; (** For each enum, its context *)
|
2022-08-25 17:08:08 +03:00
|
|
|
var_typs : var_sig ScopeVarMap.t;
|
2022-02-05 02:04:19 +03:00
|
|
|
(** 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
|
|
|
|
(** Temporary function raising an error message saying that a feature is not
|
|
|
|
supported yet *)
|
|
|
|
|
2022-05-30 12:20:48 +03:00
|
|
|
val raise_unknown_identifier : string -> ident Marked.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
|
|
|
|
val get_var_io : context -> ScopeVar.t -> Ast.scope_decl_context_io
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-08-25 13:09:51 +03:00
|
|
|
val get_var_uid : ScopeName.t -> context -> ident Marked.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 :
|
2022-08-17 18:14:29 +03:00
|
|
|
ScopeName.t -> context -> ident Marked.pos -> SubScopeName.t
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Get the subscope uid inside the scope given in argument *)
|
|
|
|
|
2022-08-12 23:42:39 +03:00
|
|
|
val is_subscope_uid : ScopeName.t -> context -> ident -> 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-08-25 18:29:00 +03:00
|
|
|
val get_def_typ : context -> Desugared.Ast.ScopeDef.t -> typ
|
2021-02-12 19:20:14 +03:00
|
|
|
(** Retrieves the type of a scope definition from the context *)
|
|
|
|
|
2021-02-11 20:48:59 +03:00
|
|
|
val is_def_cond : context -> Desugared.Ast.ScopeDef.t -> bool
|
2022-08-25 18:29:00 +03:00
|
|
|
val is_type_cond : Ast.typ -> bool
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-08-25 20:46:13 +03:00
|
|
|
val add_def_local_var : context -> ident -> context * Desugared.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 :
|
2022-02-28 19:19:06 +03:00
|
|
|
Ast.qident ->
|
2022-05-30 12:20:48 +03:00
|
|
|
Ast.ident Marked.pos option ->
|
2022-08-12 23:42:39 +03:00
|
|
|
ScopeName.t ->
|
2022-02-28 19:19:06 +03:00
|
|
|
context ->
|
|
|
|
Pos.t ->
|
|
|
|
Desugared.Ast.ScopeDef.t
|
|
|
|
(** Usage: [get_def_key var_name var_state scope_uid ctxt pos]*)
|
2021-02-12 19:20:14 +03:00
|
|
|
|
2022-10-21 16:47:17 +03:00
|
|
|
val get_enum : context -> ident Marked.pos -> EnumName.t
|
|
|
|
(** Find an enum definition from the typedefs, failing if there is none or it
|
|
|
|
has a different kind *)
|
|
|
|
|
|
|
|
val get_struct : context -> ident Marked.pos -> StructName.t
|
|
|
|
(** 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 *)
|
|
|
|
|
|
|
|
val get_scope : context -> ident Marked.pos -> ScopeName.t
|
|
|
|
(** Find a scope definition from the typedefs, failing if there is none or it
|
|
|
|
has a different kind *)
|
|
|
|
|
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 19:20:14 +03:00
|
|
|
(** Derive the context from metadata, in one pass over the declarations *)
|