forked from ocaml-flambda/flambda-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintreg.mli
46 lines (37 loc) · 1.74 KB
/
printreg.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
(* Pretty-printing of registers *)
[@@@ocaml.warning "+a-4-9-40-41-42"]
val loc :
?wrap_out:(Format.formatter -> (Format.formatter -> unit) -> unit) ->
unknown:(Format.formatter -> unit) ->
Format.formatter ->
Reg.location ->
Cmm.machtype_component ->
unit
val reg : Format.formatter -> Reg.t -> unit
val regs' :
?print_reg:(Format.formatter -> Reg.t -> unit) ->
Format.formatter ->
Reg.t array ->
unit
val regs : Format.formatter -> Reg.t array -> unit
val regset : Format.formatter -> Reg.Set.t -> unit
val regsetaddr' :
?print_reg:(Format.formatter -> Reg.t -> unit) ->
Format.formatter ->
Reg.Set.t ->
unit
val regsetaddr : Format.formatter -> Reg.Set.t -> unit