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 *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Translation from closed lambda to C-- *)
|
|
|
|
|
1996-02-18 06:42:27 -08:00
|
|
|
val compunit: int -> Clambda.ulambda -> Cmm.phrase list
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
val apply_function: int -> Cmm.phrase
|
2004-05-26 04:10:52 -07:00
|
|
|
val send_function: int -> Cmm.phrase
|
1995-07-02 09:41:48 -07:00
|
|
|
val curry_function: int -> Cmm.phrase list
|
2007-11-06 07:16:56 -08:00
|
|
|
val generic_functions: bool -> Compilenv.unit_infos list -> Cmm.phrase list
|
1995-07-02 09:41:48 -07:00
|
|
|
val entry_point: string list -> Cmm.phrase
|
|
|
|
val global_table: string list -> Cmm.phrase
|
2008-01-31 01:13:19 -08:00
|
|
|
val reference_symbols: string list -> Cmm.phrase
|
2010-01-22 04:48:24 -08:00
|
|
|
val globals_map: (string * Digest.t * Digest.t * string list) list ->
|
2007-11-06 07:16:56 -08:00
|
|
|
Cmm.phrase
|
1995-07-02 09:41:48 -07:00
|
|
|
val frame_table: string list -> Cmm.phrase
|
1996-02-20 02:59:12 -08:00
|
|
|
val data_segment_table: string list -> Cmm.phrase
|
1997-07-02 11:16:15 -07:00
|
|
|
val code_segment_table: string list -> Cmm.phrase
|
1995-07-18 01:40:44 -07:00
|
|
|
val predef_exception: string -> Cmm.phrase
|
2007-11-06 07:16:56 -08:00
|
|
|
val plugin_header: (Compilenv.unit_infos * Digest.t) list -> Cmm.phrase
|