mirror of
https://github.com/ocaml/ocaml.git
synced 2026-08-16 08:03:57 +08:00
* Various file moves in the middle end: this is the first stage of improving separation between the middle end and backend. * Creation of file_formats/ directory (with associated file moves) to hold the definitions of compilation artifact formats. * Creation of lambda/ directory (with associated file moves) to hold Lambda language definition files, transformation passes and construction passes from Typedtree. * Disable (hopefully temporarily) dynlink, debugger and ocamldoc for the dune build.
33 lines
1.7 KiB
OCaml
33 lines
1.7 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* 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. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
open Lambda
|
|
|
|
open Format
|
|
|
|
val integer_comparison: formatter -> integer_comparison -> unit
|
|
val float_comparison: formatter -> float_comparison -> unit
|
|
val structured_constant: formatter -> structured_constant -> unit
|
|
val lambda: formatter -> lambda -> unit
|
|
val program: formatter -> program -> unit
|
|
val primitive: formatter -> primitive -> unit
|
|
val name_of_primitive : primitive -> string
|
|
val value_kind : formatter -> value_kind -> unit
|
|
val block_shape : formatter -> value_kind list option -> unit
|
|
val record_rep : formatter -> Types.record_representation -> unit
|
|
val print_bigarray :
|
|
string -> bool -> Lambda.bigarray_kind -> formatter ->
|
|
Lambda.bigarray_layout -> unit
|