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-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
|
2000-02-21 11:38:09 -08:00
|
|
|
val emit_nativeint: nativeint -> unit
|
2007-01-29 04:11:18 -08:00
|
|
|
val emit_int32: int32 -> unit
|
1996-01-06 10:56:39 -08:00
|
|
|
val emit_symbol: char -> string -> unit
|
2003-07-05 04:13:24 -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
|
2007-01-29 04:11:18 -08:00
|
|
|
|
|
|
|
type frame_descr =
|
|
|
|
{ fd_lbl: int; (* Return address *)
|
|
|
|
fd_frame_size: int; (* Size of stack frame *)
|
|
|
|
fd_live_offset: int list; (* Offsets/regs of live addresses *)
|
|
|
|
fd_debuginfo: Debuginfo.t } (* Location, if any *)
|
|
|
|
|
|
|
|
val frame_descriptors : frame_descr list ref
|
|
|
|
|
|
|
|
type emit_frame_actions =
|
|
|
|
{ efa_label: int -> unit;
|
|
|
|
efa_16: int -> unit;
|
|
|
|
efa_32: int32 -> unit;
|
|
|
|
efa_word: int -> unit;
|
|
|
|
efa_align: int -> unit;
|
|
|
|
efa_label_rel: int -> int32 -> unit;
|
|
|
|
efa_def_label: int -> unit;
|
|
|
|
efa_string: string -> unit }
|
|
|
|
|
|
|
|
val emit_frames: emit_frame_actions -> unit
|