1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
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
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
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
|
2014-04-25 01:41:13 -07:00
|
|
|
val emit_float64_directive: string -> int64 -> unit
|
|
|
|
val emit_float64_split_directive: string -> int64 -> unit
|
|
|
|
val emit_float32_directive: string -> int32 -> unit
|
2007-01-29 04:11:18 -08:00
|
|
|
|
2014-05-09 05:01:21 -07:00
|
|
|
val reset : unit -> unit
|
2012-05-12 02:51:45 -07:00
|
|
|
val reset_debug_info: unit -> unit
|
2012-02-21 09:41:02 -08:00
|
|
|
val emit_debug_info: Debuginfo.t -> unit
|
2014-08-18 02:32:20 -07:00
|
|
|
val emit_debug_info_gen :
|
|
|
|
Debuginfo.t ->
|
|
|
|
(int -> string -> unit) ->
|
|
|
|
(int -> int -> unit) -> unit
|
2012-02-21 09:41:02 -08:00
|
|
|
|
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
|
2009-05-20 04:52:42 -07:00
|
|
|
|
|
|
|
val is_generic_function: string -> bool
|
2012-02-21 09:41:02 -08:00
|
|
|
|
|
|
|
val cfi_startproc : unit -> unit
|
|
|
|
val cfi_endproc : unit -> unit
|
|
|
|
val cfi_adjust_cfa_offset : int -> unit
|
2014-09-03 07:46:53 -07:00
|
|
|
|
|
|
|
|
|
|
|
val binary_backend_available: bool ref
|
|
|
|
(** Is a binary backend available. If yes, we don't need
|
|
|
|
to generate the textual assembly file (unless the user
|
|
|
|
request it with -S). *)
|
|
|
|
|
|
|
|
val create_asm_file: bool ref
|
|
|
|
(** Are we actually generating the textual assembly file? *)
|