1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
1997-02-20 12:39:02 -08:00
|
|
|
(* Xavier Leroy and Jerome Vouillon, projet Cristal, INRIA Rocquencourt*)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1997-02-20 12:39:02 -08:00
|
|
|
(**** Typing of type definitions ****)
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1997-02-20 12:39:02 -08:00
|
|
|
open Misc
|
1995-05-04 03:15:53 -07:00
|
|
|
open Parsetree
|
1996-09-23 04:33:27 -07:00
|
|
|
open Types
|
1995-05-04 03:15:53 -07:00
|
|
|
open Typedtree
|
|
|
|
open Typetexp
|
|
|
|
|
|
|
|
type error =
|
|
|
|
Repeated_parameter
|
|
|
|
| Duplicate_constructor of string
|
1995-05-22 08:43:44 -07:00
|
|
|
| Too_many_constructors
|
1995-05-04 03:15:53 -07:00
|
|
|
| Duplicate_label of string
|
|
|
|
| Recursive_abbrev of string
|
1995-09-26 13:23:29 -07:00
|
|
|
| Definition_mismatch of type_expr
|
1997-02-20 12:39:02 -08:00
|
|
|
| Unconsistent_constraint
|
|
|
|
| Type_clash of (type_expr * type_expr) list
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
exception Error of Location.t * error
|
|
|
|
|
|
|
|
(* Enter all declared types in the environment as abstract types *)
|
|
|
|
|
|
|
|
let rec enter_types env = function
|
1997-02-20 12:39:02 -08:00
|
|
|
([], []) ->
|
|
|
|
(env, [])
|
|
|
|
| ((name, sdecl) :: srem, id :: irem) ->
|
1995-05-04 03:15:53 -07:00
|
|
|
let decl =
|
1997-02-20 12:39:02 -08:00
|
|
|
{ type_params = List.map (fun _ -> Ctype.newvar ()) sdecl.ptype_params;
|
1995-05-04 03:15:53 -07:00
|
|
|
type_arity = List.length sdecl.ptype_params;
|
1995-09-26 13:23:29 -07:00
|
|
|
type_kind = Type_abstract;
|
1997-02-20 12:39:02 -08:00
|
|
|
type_manifest =
|
|
|
|
match sdecl.ptype_manifest with
|
|
|
|
None -> None
|
|
|
|
| Some _ -> Some (Ctype.newvar ()) }
|
|
|
|
in
|
|
|
|
let extenv = Env.add_type id decl env in
|
|
|
|
let (ext_env, decl_rem) = enter_types extenv (srem, irem) in
|
|
|
|
(ext_env, (id, decl) :: decl_rem)
|
|
|
|
| _ ->
|
|
|
|
fatal_error "Typedecl.enter_types"
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
(* Translate one type declaration *)
|
|
|
|
|
1995-05-30 06:36:40 -07:00
|
|
|
module StringSet =
|
|
|
|
Set.Make(struct
|
|
|
|
type t = string
|
|
|
|
let compare = compare
|
|
|
|
end)
|
|
|
|
|
1997-02-20 12:39:02 -08:00
|
|
|
(* Check whether an abbreviation expands to itself. *)
|
|
|
|
let rec cyclic_abbrev env id ty =
|
|
|
|
let ty = Ctype.repr ty in
|
|
|
|
match ty.desc with
|
|
|
|
Tconstr (Path.Pident id', _, _) when Ident.same id id' ->
|
|
|
|
true
|
|
|
|
| Tconstr (p, tl, abbrev) ->
|
|
|
|
begin try
|
|
|
|
cyclic_abbrev env id (Ctype.expand_abbrev env p tl abbrev ty.level)
|
|
|
|
with Ctype.Cannot_expand ->
|
|
|
|
false
|
|
|
|
end
|
|
|
|
| _ ->
|
|
|
|
false
|
|
|
|
|
1997-04-24 06:41:16 -07:00
|
|
|
(* First pass: parameters, constraints and expansion *)
|
1997-02-20 12:39:02 -08:00
|
|
|
let transl_declaration env (name, sdecl) (id, decl) =
|
1995-05-04 03:15:53 -07:00
|
|
|
reset_type_variables();
|
1997-02-20 12:39:02 -08:00
|
|
|
begin try
|
|
|
|
List.iter2
|
|
|
|
(fun ty sty -> Ctype.unify env ty (enter_type_variable true sty))
|
|
|
|
decl.type_params sdecl.ptype_params
|
|
|
|
with Already_bound ->
|
|
|
|
raise(Error(sdecl.ptype_loc, Repeated_parameter))
|
|
|
|
end;
|
|
|
|
|
1997-03-07 14:31:33 -08:00
|
|
|
let cstr_params =
|
|
|
|
List.map (function (v, _, loc) -> type_variable loc v) sdecl.ptype_cstrs
|
|
|
|
in
|
|
|
|
List.iter2
|
|
|
|
(fun (v, sty, loc) ty' ->
|
1997-02-20 12:39:02 -08:00
|
|
|
try
|
1997-03-07 14:31:33 -08:00
|
|
|
Ctype.unify env (transl_simple_type env false sty) ty'
|
1997-02-20 12:39:02 -08:00
|
|
|
with Ctype.Unify _ ->
|
|
|
|
raise(Error(loc, Unconsistent_constraint)))
|
1997-03-07 14:31:33 -08:00
|
|
|
sdecl.ptype_cstrs cstr_params;
|
1997-02-20 12:39:02 -08:00
|
|
|
|
|
|
|
let decl' =
|
|
|
|
{ type_params = decl.type_params;
|
1997-04-24 06:41:16 -07:00
|
|
|
type_arity = decl.type_arity;
|
|
|
|
type_kind =
|
|
|
|
Type_abstract;
|
|
|
|
type_manifest =
|
|
|
|
begin match (decl.type_manifest, sdecl.ptype_manifest) with
|
|
|
|
(None, None) -> None
|
|
|
|
| (Some ty, Some sty) ->
|
|
|
|
let ty' =
|
|
|
|
Ctype.unroll_abbrev id decl.type_params
|
|
|
|
(transl_simple_type env true sty)
|
|
|
|
in
|
|
|
|
if cyclic_abbrev env id ty' then
|
|
|
|
raise(Error(sdecl.ptype_loc, Recursive_abbrev name));
|
|
|
|
begin try Ctype.unify env ty' ty with Ctype.Unify trace ->
|
|
|
|
raise(Error(sdecl.ptype_loc, Type_clash trace))
|
|
|
|
end;
|
|
|
|
Some ty
|
|
|
|
| _ ->
|
|
|
|
fatal_error "Typedecl.transl_declaration"
|
|
|
|
end } in
|
|
|
|
(id, decl')
|
|
|
|
|
|
|
|
(* Second pass: representation *)
|
|
|
|
let transl_declaration2 env (name, sdecl) (id, decl) =
|
|
|
|
let (params, typ) =
|
|
|
|
match decl.type_manifest with
|
|
|
|
None -> (Ctype.instance_list decl.type_params, None)
|
|
|
|
| Some typ ->
|
|
|
|
let (params, typ) =
|
|
|
|
Ctype.instance_parameterized_type decl.type_params typ
|
|
|
|
in
|
|
|
|
(params, Some typ)
|
|
|
|
in
|
|
|
|
|
|
|
|
(* Bind type parameters *)
|
|
|
|
reset_type_variables();
|
|
|
|
List.iter2
|
|
|
|
(fun ty sty -> Ctype.unify env ty (enter_type_variable true sty))
|
|
|
|
params sdecl.ptype_params;
|
|
|
|
|
|
|
|
let decl' =
|
|
|
|
{ type_params = params;
|
1997-02-20 12:39:02 -08:00
|
|
|
type_arity = decl.type_arity;
|
1995-09-26 13:23:29 -07:00
|
|
|
type_kind =
|
|
|
|
begin match sdecl.ptype_kind with
|
|
|
|
Ptype_abstract ->
|
|
|
|
Type_abstract
|
|
|
|
| Ptype_variant cstrs ->
|
|
|
|
let all_constrs = ref StringSet.empty in
|
|
|
|
List.iter
|
|
|
|
(fun (name, args) ->
|
|
|
|
if StringSet.mem name !all_constrs then
|
|
|
|
raise(Error(sdecl.ptype_loc, Duplicate_constructor name));
|
|
|
|
all_constrs := StringSet.add name !all_constrs)
|
|
|
|
cstrs;
|
|
|
|
if List.length cstrs > Config.max_tag then
|
|
|
|
raise(Error(sdecl.ptype_loc, Too_many_constructors));
|
|
|
|
Type_variant(List.map
|
|
|
|
(fun (name, args) ->
|
|
|
|
(name, List.map (transl_simple_type env true) args))
|
|
|
|
cstrs)
|
|
|
|
| Ptype_record lbls ->
|
|
|
|
let all_labels = ref StringSet.empty in
|
|
|
|
List.iter
|
|
|
|
(fun (name, mut, arg) ->
|
|
|
|
if StringSet.mem name !all_labels then
|
|
|
|
raise(Error(sdecl.ptype_loc, Duplicate_label name));
|
|
|
|
all_labels := StringSet.add name !all_labels)
|
|
|
|
lbls;
|
|
|
|
Type_record(List.map
|
|
|
|
(fun (name, mut, arg) ->
|
|
|
|
(name, mut, transl_simple_type env true arg))
|
|
|
|
lbls)
|
|
|
|
end;
|
1997-04-24 06:41:16 -07:00
|
|
|
type_manifest = typ } in
|
1997-02-20 12:39:02 -08:00
|
|
|
(id, decl')
|
|
|
|
|
|
|
|
(* Generalize a type declaration *)
|
|
|
|
|
|
|
|
let generalize_decl decl =
|
|
|
|
List.iter Ctype.generalize decl.type_params;
|
1996-04-22 04:15:41 -07:00
|
|
|
begin match decl.type_kind with
|
|
|
|
Type_abstract ->
|
|
|
|
()
|
|
|
|
| Type_variant v ->
|
|
|
|
List.iter (fun (_, tyl) -> List.iter Ctype.generalize tyl) v
|
|
|
|
| Type_record r ->
|
|
|
|
List.iter (fun (_, _, ty) -> Ctype.generalize ty) r
|
|
|
|
end;
|
|
|
|
begin match decl.type_manifest with
|
|
|
|
None -> ()
|
|
|
|
| Some ty -> Ctype.generalize ty
|
1997-02-20 12:39:02 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
(*
|
|
|
|
If both a variant/record definition and a type equation are given,
|
|
|
|
need to check that the equation refers to a type of the same kind
|
|
|
|
with the same constructors and labels.
|
|
|
|
*)
|
|
|
|
let check_abbrev env (_, sdecl) (id, decl) =
|
|
|
|
match decl with
|
1995-11-03 05:23:03 -08:00
|
|
|
{type_kind = (Type_variant _ | Type_record _); type_manifest = Some ty} ->
|
1997-02-20 12:39:02 -08:00
|
|
|
begin match (Ctype.repr ty).desc with
|
1996-04-22 04:15:41 -07:00
|
|
|
Tconstr(path, args, _) ->
|
1995-11-03 05:23:03 -08:00
|
|
|
begin try
|
|
|
|
let decl' = Env.find_type path env in
|
1997-02-20 12:39:02 -08:00
|
|
|
if
|
|
|
|
List.length args = List.length decl.type_params
|
|
|
|
&&
|
|
|
|
Ctype.equal env false args decl.type_params
|
|
|
|
&&
|
|
|
|
Includecore.type_declarations env id
|
1996-11-13 07:32:07 -08:00
|
|
|
(Subst.type_declaration (Subst.add_type id path Subst.identity)
|
|
|
|
decl)
|
|
|
|
decl'
|
1995-11-03 05:23:03 -08:00
|
|
|
then ()
|
|
|
|
else raise(Error(sdecl.ptype_loc, Definition_mismatch ty))
|
|
|
|
with Not_found ->
|
|
|
|
raise(Error(sdecl.ptype_loc, Definition_mismatch ty))
|
|
|
|
end
|
|
|
|
| _ -> raise(Error(sdecl.ptype_loc, Definition_mismatch ty))
|
|
|
|
end
|
|
|
|
| _ -> ()
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
(* Check for ill-defined abbrevs *)
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1997-05-11 14:34:04 -07:00
|
|
|
(* Occur check *)
|
1995-05-04 03:15:53 -07:00
|
|
|
let check_recursive_abbrev env (name, sdecl) (id, decl) =
|
1995-09-26 13:23:29 -07:00
|
|
|
match decl.type_manifest with
|
|
|
|
Some ty ->
|
1996-04-22 04:15:41 -07:00
|
|
|
begin try Ctype.correct_abbrev env id decl.type_params ty with
|
|
|
|
Ctype.Recursive_abbrev ->
|
|
|
|
raise(Error(sdecl.ptype_loc, Recursive_abbrev name))
|
|
|
|
end
|
|
|
|
| _ ->
|
|
|
|
()
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
(* Translate a set of mutually recursive type declarations *)
|
|
|
|
let transl_type_decl env name_sdecl_list =
|
1997-02-20 12:39:02 -08:00
|
|
|
(* Create identifiers. *)
|
|
|
|
let id_list =
|
|
|
|
List.map (fun (name, _) -> Ident.create name) name_sdecl_list
|
|
|
|
in
|
|
|
|
(*
|
|
|
|
Since we've introduced fresh idents, make sure the definition
|
|
|
|
level is at least the binding time of these events. Otherwise,
|
|
|
|
passing one of the recursively-defined type constrs as argument
|
|
|
|
to an abbreviation may fail.
|
|
|
|
*)
|
1996-09-24 08:45:58 -07:00
|
|
|
Ctype.init_def(Ident.current_time());
|
1997-02-20 12:39:02 -08:00
|
|
|
Ctype.begin_def();
|
|
|
|
(* Enter types. *)
|
|
|
|
let (temp_env, temp_decl) = enter_types env (name_sdecl_list, id_list) in
|
|
|
|
(* Translate each declaration. *)
|
1995-08-28 04:23:33 -07:00
|
|
|
let decls =
|
1997-02-20 12:39:02 -08:00
|
|
|
List.map2 (transl_declaration temp_env) name_sdecl_list temp_decl in
|
1997-04-24 06:41:16 -07:00
|
|
|
(* Generalize intermediate type declarations. *)
|
|
|
|
Ctype.end_def();
|
|
|
|
List.iter (function (_, decl) -> generalize_decl decl) decls;
|
|
|
|
(* Build an env. containing type expansions *)
|
|
|
|
let temp_env =
|
|
|
|
List.fold_right
|
|
|
|
(fun (id, decl) env -> Env.add_type id decl env)
|
|
|
|
decls env
|
|
|
|
in
|
|
|
|
(* Check for recursive abbrevs *)
|
|
|
|
List.iter2 (check_recursive_abbrev temp_env) name_sdecl_list decls;
|
|
|
|
Ctype.begin_def();
|
|
|
|
let decls =
|
|
|
|
List.map2 (transl_declaration2 temp_env) name_sdecl_list decls in
|
|
|
|
(* Generalize final type declarations. *)
|
1997-02-20 12:39:02 -08:00
|
|
|
Ctype.end_def();
|
|
|
|
List.iter (function (_, decl) -> generalize_decl decl) decls;
|
|
|
|
(* Build the final env. *)
|
1995-05-04 03:15:53 -07:00
|
|
|
let newenv =
|
1995-08-28 04:23:33 -07:00
|
|
|
List.fold_right
|
|
|
|
(fun (id, decl) env -> Env.add_type id decl env)
|
1997-02-20 12:39:02 -08:00
|
|
|
decls env
|
|
|
|
in
|
|
|
|
(* Check re-exportation *)
|
|
|
|
List.iter2 (check_abbrev newenv) name_sdecl_list decls;
|
1995-05-04 03:15:53 -07:00
|
|
|
(* Done *)
|
|
|
|
(decls, newenv)
|
|
|
|
|
|
|
|
(* Translate an exception declaration *)
|
|
|
|
let transl_exception env excdecl =
|
|
|
|
reset_type_variables();
|
1997-02-20 12:39:02 -08:00
|
|
|
Ctype.begin_def();
|
|
|
|
let types = List.map (transl_simple_type env true) excdecl in
|
|
|
|
Ctype.end_def();
|
|
|
|
List.iter Ctype.generalize types;
|
|
|
|
types
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1995-07-25 04:40:07 -07:00
|
|
|
(* Translate a value declaration *)
|
|
|
|
let transl_value_decl env valdecl =
|
|
|
|
let ty = Typetexp.transl_type_scheme env valdecl.pval_type in
|
1996-04-22 04:15:41 -07:00
|
|
|
let prim = Primitive.parse_declaration (Ctype.arity ty) valdecl.pval_prim in
|
1995-07-27 10:46:55 -07:00
|
|
|
{ val_type = ty;
|
1996-04-22 04:15:41 -07:00
|
|
|
val_kind = match prim with Some p -> Val_prim p | None -> Val_reg }
|
1995-07-25 04:40:07 -07:00
|
|
|
|
1995-09-28 03:42:38 -07:00
|
|
|
(* Translate a "with" constraint -- much simplified version of
|
|
|
|
transl_type_decl. *)
|
|
|
|
let transl_with_constraint env sdecl =
|
|
|
|
reset_type_variables();
|
1996-04-22 04:15:41 -07:00
|
|
|
Ctype.begin_def();
|
1995-09-28 03:42:38 -07:00
|
|
|
let params =
|
|
|
|
try
|
1996-05-26 06:42:34 -07:00
|
|
|
List.map (enter_type_variable true) sdecl.ptype_params
|
1995-09-28 03:42:38 -07:00
|
|
|
with Already_bound ->
|
|
|
|
raise(Error(sdecl.ptype_loc, Repeated_parameter)) in
|
1997-02-20 12:39:02 -08:00
|
|
|
List.iter
|
|
|
|
(function (v, ty, loc) ->
|
|
|
|
try
|
|
|
|
Ctype.unify env
|
|
|
|
(type_variable loc v) (transl_simple_type env false ty)
|
|
|
|
with Ctype.Unify _ ->
|
|
|
|
raise(Error(loc, Unconsistent_constraint)))
|
|
|
|
sdecl.ptype_cstrs;
|
|
|
|
let decl =
|
|
|
|
{ type_params = params;
|
|
|
|
type_arity = List.length params;
|
|
|
|
type_kind = Type_abstract;
|
|
|
|
type_manifest =
|
1995-09-28 03:42:38 -07:00
|
|
|
begin match sdecl.ptype_manifest with
|
|
|
|
None -> None
|
|
|
|
| Some sty -> Some(transl_simple_type env true sty)
|
|
|
|
end }
|
1997-02-20 12:39:02 -08:00
|
|
|
in
|
|
|
|
Ctype.end_def();
|
|
|
|
generalize_decl decl;
|
|
|
|
decl
|
1995-09-28 03:42:38 -07:00
|
|
|
|
1997-02-20 12:39:02 -08:00
|
|
|
(**** Error report ****)
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
open Format
|
|
|
|
|
|
|
|
let report_error = function
|
|
|
|
Repeated_parameter ->
|
|
|
|
print_string "A type parameter occurs several times"
|
|
|
|
| Duplicate_constructor s ->
|
|
|
|
print_string "Two constructors are named "; print_string s
|
1995-05-22 08:43:44 -07:00
|
|
|
| Too_many_constructors ->
|
|
|
|
print_string "Too many constructors -- maximum is ";
|
|
|
|
print_int Config.max_tag; print_string " constructors"
|
1995-05-04 03:15:53 -07:00
|
|
|
| Duplicate_label s ->
|
|
|
|
print_string "Two labels are named "; print_string s
|
|
|
|
| Recursive_abbrev s ->
|
|
|
|
print_string "The type abbreviation "; print_string s;
|
1997-02-20 12:39:02 -08:00
|
|
|
print_string " is cyclic" (* " expands to itself" *)
|
1995-09-26 13:23:29 -07:00
|
|
|
| Definition_mismatch ty ->
|
1997-02-20 12:39:02 -08:00
|
|
|
Printtyp.reset ();
|
|
|
|
Printtyp.mark_loops ty;
|
1995-09-26 13:23:29 -07:00
|
|
|
print_string
|
|
|
|
"The variant or record definition does not match that of type";
|
|
|
|
print_space(); Printtyp.type_expr ty
|
1997-02-20 12:39:02 -08:00
|
|
|
| Unconsistent_constraint ->
|
|
|
|
print_string "The type constraints are not consistent"
|
|
|
|
| Type_clash trace ->
|
|
|
|
Printtyp.unification_error trace
|
|
|
|
(function () ->
|
|
|
|
print_string "This type constructor expands to type")
|
|
|
|
(function () ->
|
|
|
|
print_string "but is here used with type")
|