29 lines
1.2 KiB
OCaml
29 lines
1.2 KiB
OCaml
(***********************************************************************)
|
|
(* *)
|
|
(* Objective Caml *)
|
|
(* *)
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
(* *)
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
|
(* Automatique. Distributed only by permission. *)
|
|
(* *)
|
|
(***********************************************************************)
|
|
|
|
(* $Id$ *)
|
|
|
|
(* The "trace" facility *)
|
|
|
|
type traced_function =
|
|
{ path: Path.t;
|
|
closure: Obj.t;
|
|
initial_closure: Obj.t;
|
|
instrumented_fun: Obj.t }
|
|
|
|
val traced_functions: traced_function list ref
|
|
val is_traced: Obj.t -> Path.t option
|
|
val copy_closure: Obj.t -> Obj.t
|
|
val overwrite_closure: Obj.t -> Obj.t -> unit
|
|
val instrument_closure:
|
|
Env.t -> Longident.t -> Types.type_expr -> Obj.t -> Obj.t
|
|
val print_trace: Obj.t -> Obj.t -> Obj.t
|