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
|
|
|
(* From lambda to assembly code *)
|
|
|
|
|
1996-02-18 06:42:27 -08:00
|
|
|
val compile_implementation: string -> int -> Lambda.lambda -> unit
|
1995-07-02 09:41:48 -07:00
|
|
|
val compile_phrase: Cmm.phrase -> unit
|
|
|
|
|
|
|
|
type error = Assembler_error of string
|
|
|
|
exception Error of error
|
|
|
|
val report_error: error -> unit
|
|
|
|
|
|
|
|
|