112 lines
4.0 KiB
OCaml
112 lines
4.0 KiB
OCaml
(***********************************************************************)
|
|
(* *)
|
|
(* Objective Caml *)
|
|
(* *)
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
(* *)
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
(* under the terms of the Q Public License version 1.0. *)
|
|
(* *)
|
|
(***********************************************************************)
|
|
|
|
(* $Id$ *)
|
|
|
|
(* Basic operations on core types *)
|
|
|
|
open Asttypes
|
|
open Types
|
|
|
|
val generic_level: int
|
|
|
|
val newty2: int -> type_desc -> type_expr
|
|
(* Create a type *)
|
|
val newgenty: type_desc -> type_expr
|
|
(* Create a generic type *)
|
|
val newgenvar: unit -> type_expr
|
|
(* Return a fresh generic variable *)
|
|
|
|
(* Use Tsubst instead
|
|
val newmarkedvar: int -> type_expr
|
|
(* Return a fresh marked variable *)
|
|
val newmarkedgenvar: unit -> type_expr
|
|
(* Return a fresh marked generic variable *)
|
|
*)
|
|
|
|
val repr: type_expr -> type_expr
|
|
(* Return the canonical representative of a type. *)
|
|
|
|
val field_kind_repr: field_kind -> field_kind
|
|
(* Return the canonical representative of an object field
|
|
kind. *)
|
|
|
|
val commu_repr: commutable -> commutable
|
|
(* Return the canonical representative of a commutation lock *)
|
|
|
|
val row_repr: row_desc -> row_desc
|
|
(* Return the canonical representative of a row description *)
|
|
val row_field_repr: row_field -> row_field
|
|
(* Return the canonical representative of a row field *)
|
|
val row_more: row_desc -> type_expr
|
|
(* Return the extension variable of the row *)
|
|
val static_row: row_desc -> bool
|
|
(* Return whether the row is static or not *)
|
|
val hash_variant: label -> int
|
|
(* Hash function for variant tags *)
|
|
|
|
(**** Utilities for type traversal ****)
|
|
|
|
val iter_type_expr: (type_expr -> unit) -> type_expr -> unit
|
|
(* Iteration on types *)
|
|
val iter_row: (type_expr -> unit) -> row_desc -> unit
|
|
(* Iteration on types in a row *)
|
|
|
|
val copy_type_desc: (type_expr -> type_expr) -> type_desc -> type_desc
|
|
(* Copy on types *)
|
|
val copy_row:
|
|
(type_expr -> type_expr) -> row_desc -> bool -> type_expr -> row_desc
|
|
val copy_kind: field_kind -> field_kind
|
|
|
|
val save_desc: type_expr -> type_desc -> unit
|
|
(* Save a type description *)
|
|
val cleanup_types: unit -> unit
|
|
(* Restore type descriptions *)
|
|
|
|
val lowest_level: int
|
|
(* Marked type: ty.level < lowest_level *)
|
|
val pivot_level: int
|
|
(* Type marking: ty.level <- pivot_level - ty.level *)
|
|
val mark_type: type_expr -> unit
|
|
(* Mark a type *)
|
|
val mark_type_node: type_expr -> unit
|
|
(* Mark a type node (but not its sons) *)
|
|
val mark_type_params: type_expr -> unit
|
|
(* Mark the sons of a type node *)
|
|
val unmark_type: type_expr -> unit
|
|
val unmark_type_decl: type_declaration -> unit
|
|
val unmark_class_type: class_type -> unit
|
|
val unmark_class_signature: class_signature -> unit
|
|
(* Remove marks from a type *)
|
|
|
|
(**** Memorization of abbreviation expansion ****)
|
|
|
|
val cleanup_abbrev: unit -> unit
|
|
(* Flush the cache of abbreviation expansions.
|
|
When some types are saved (using [output_value]), this
|
|
function MUST be called just before. *)
|
|
val memorize_abbrev:
|
|
abbrev_memo ref -> Path.t -> type_expr -> type_expr -> unit
|
|
(* Add an expansion in the cache *)
|
|
val forget_abbrev:
|
|
abbrev_memo ref -> Path.t -> unit
|
|
(* Remove an abbreviation from the cache *)
|
|
|
|
(**** Utilities for labels ****)
|
|
|
|
val is_optional : label -> bool
|
|
val label_name : label -> label
|
|
val extract_label :
|
|
label -> (label * 'a) list ->
|
|
label * 'a * (label * 'a) list * (label * 'a) list
|
|
(* actual label, value, before list, after list *)
|