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-06-15 01:17:29 -07:00
|
|
|
(* Common functions for emitting assembly code *)
|
|
|
|
|
|
|
|
val output_channel: out_channel ref
|
|
|
|
val emit_string: string -> unit
|
|
|
|
val emit_int: int -> unit
|
1996-01-06 10:56:39 -08:00
|
|
|
val emit_symbol: char -> string -> unit
|
1995-06-15 01:17:29 -07:00
|
|
|
val emit_printf: ('a, out_channel, unit) format -> 'a
|
1995-11-19 08:53:12 -08:00
|
|
|
val emit_char: char -> unit
|
1996-09-18 06:23:56 -07:00
|
|
|
val emit_string_literal: string -> unit
|
|
|
|
val emit_string_directive: string -> string -> unit
|
|
|
|
val emit_bytes_directive: string -> string -> unit
|