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
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
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$ *)
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* A variant of the "lambda" code with direct / indirect calls explicit
|
|
|
|
and closures explicit too *)
|
|
|
|
|
|
|
|
open Asttypes
|
|
|
|
open Lambda
|
|
|
|
|
|
|
|
type function_label = string
|
|
|
|
|
|
|
|
type ulambda =
|
|
|
|
Uvar of Ident.t
|
|
|
|
| Uconst of structured_constant
|
|
|
|
| Udirect_apply of function_label * ulambda list
|
|
|
|
| Ugeneric_apply of ulambda * ulambda list
|
1995-07-07 05:07:07 -07:00
|
|
|
| Uclosure of (function_label * int * Ident.t list * ulambda) list
|
|
|
|
* ulambda list
|
|
|
|
| Uoffset of ulambda * int
|
1995-07-02 09:41:48 -07:00
|
|
|
| Ulet of Ident.t * ulambda * ulambda
|
|
|
|
| Uletrec of (Ident.t * ulambda) list * ulambda
|
|
|
|
| Uprim of primitive * ulambda list
|
1996-04-04 07:54:25 -08:00
|
|
|
| Uswitch of ulambda * ulambda_switch
|
1995-07-02 09:41:48 -07:00
|
|
|
| Ustaticfail
|
|
|
|
| Ucatch of ulambda * ulambda
|
|
|
|
| Utrywith of ulambda * Ident.t * ulambda
|
|
|
|
| Uifthenelse of ulambda * ulambda * ulambda
|
|
|
|
| Usequence of ulambda * ulambda
|
|
|
|
| Uwhile of ulambda * ulambda
|
|
|
|
| Ufor of Ident.t * ulambda * ulambda * direction_flag * ulambda
|
1995-11-25 07:38:43 -08:00
|
|
|
| Uassign of Ident.t * ulambda
|
1996-04-22 04:15:41 -07:00
|
|
|
| Usend of ulambda * ulambda * ulambda list
|
1995-07-02 09:41:48 -07:00
|
|
|
|
1996-04-04 07:54:25 -08:00
|
|
|
and ulambda_switch =
|
|
|
|
{ us_index_consts: int array;
|
|
|
|
us_cases_consts: ulambda array;
|
|
|
|
us_index_blocks: int array;
|
|
|
|
us_cases_blocks: ulambda array;
|
|
|
|
us_checked: bool }
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Description of known functions *)
|
|
|
|
|
|
|
|
type function_description =
|
|
|
|
{ fun_label: function_label; (* Label of direct entry point *)
|
|
|
|
fun_arity: int; (* Number of arguments *)
|
1995-07-11 11:03:29 -07:00
|
|
|
mutable fun_closed: bool } (* True if environment not used *)
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
(* Approximation of values *)
|
|
|
|
|
|
|
|
type value_approximation =
|
|
|
|
Value_closure of function_description * value_approximation
|
|
|
|
| Value_tuple of value_approximation array
|
|
|
|
| Value_unknown
|