1996-04-22 04:15:41 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1996-04-22 04:15:41 -07:00
|
|
|
(* *)
|
|
|
|
(* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the GNU Library General Public License. *)
|
1996-04-22 04:15:41 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
2001-10-26 15:38:48 -07:00
|
|
|
(** Object-oriented extension *)
|
1996-04-22 04:15:41 -07:00
|
|
|
|
2001-12-03 14:16:03 -08:00
|
|
|
val copy : (< .. > as 'a) -> 'a
|
2001-10-26 15:38:48 -07:00
|
|
|
(** [Oo.copy o] returns a copy of object [o], that is a fresh
|
|
|
|
object with the same methods and instance variables as [o] *)
|
|
|
|
|
1998-08-16 14:28:41 -07:00
|
|
|
|
2001-10-30 08:52:04 -08:00
|
|
|
(**/**)
|
1996-04-22 04:15:41 -07:00
|
|
|
|
2001-10-26 15:38:48 -07:00
|
|
|
(** {2 For system use only, not for the casual user} *)
|
|
|
|
|
|
|
|
(** {2 Methods} *)
|
1996-04-22 04:15:41 -07:00
|
|
|
|
|
|
|
type label
|
2001-12-03 14:16:03 -08:00
|
|
|
val new_method : string -> label
|
1996-04-22 04:15:41 -07:00
|
|
|
|
2001-10-26 15:38:48 -07:00
|
|
|
(** {2 Classes} *)
|
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
type table
|
1998-06-24 12:22:26 -07:00
|
|
|
type meth
|
|
|
|
type t
|
|
|
|
type obj
|
2001-12-03 14:16:03 -08:00
|
|
|
val new_variable : table -> string -> int
|
|
|
|
val get_variable : table -> string -> int
|
|
|
|
val get_method_label : table -> string -> label
|
|
|
|
val get_method : table -> label -> meth
|
|
|
|
val set_method : table -> label -> meth -> unit
|
|
|
|
val narrow : table -> string list -> string list -> string list -> unit
|
|
|
|
val widen : table -> unit
|
|
|
|
val add_initializer : table -> (obj -> unit) -> unit
|
|
|
|
val create_table : string list -> table
|
|
|
|
val init_class : table -> unit
|
1996-04-22 04:15:41 -07:00
|
|
|
|
2001-10-26 15:38:48 -07:00
|
|
|
(** {2 Objects} *)
|
|
|
|
|
2001-12-03 14:16:03 -08:00
|
|
|
val create_object : table -> obj
|
|
|
|
val run_initializers : obj -> table -> unit
|
|
|
|
val send : obj -> label -> t
|
1996-04-22 04:15:41 -07:00
|
|
|
|
2001-10-26 15:38:48 -07:00
|
|
|
(** {2 Parameters} *)
|
|
|
|
|
2001-12-03 14:16:03 -08:00
|
|
|
type params =
|
|
|
|
{ mutable compact_table : bool;
|
1997-09-30 03:15:06 -07:00
|
|
|
mutable copy_parent : bool;
|
|
|
|
mutable clean_when_copying : bool;
|
|
|
|
mutable retry_count : int;
|
2001-12-03 14:16:03 -08:00
|
|
|
mutable bucket_small_size : int }
|
1996-10-26 08:44:18 -07:00
|
|
|
|
1997-09-30 03:15:06 -07:00
|
|
|
val params : params
|
1996-10-26 08:44:18 -07:00
|
|
|
|
2001-10-26 15:38:48 -07:00
|
|
|
(** {2 Statistics} *)
|
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
type stats =
|
2001-12-03 14:16:03 -08:00
|
|
|
{ classes : int;
|
|
|
|
labels : int;
|
|
|
|
methods : int;
|
|
|
|
inst_vars : int;
|
|
|
|
buckets : int;
|
|
|
|
distrib : int array;
|
|
|
|
small_bucket_count : int;
|
|
|
|
small_bucket_max : int }
|
|
|
|
val stats : unit -> stats
|
|
|
|
val show_buckets : unit -> unit
|