ocaml/middle_end/augment_specialised_args.mli

56 lines
2.0 KiB
OCaml

(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Pierre Chambart, OCamlPro *)
(* Mark Shinwell and Leo White, Jane Street Europe *)
(* *)
(* Copyright 2013--2016 OCamlPro SAS *)
(* Copyright 2014--2016 Jane Street Group LLC *)
(* *)
(* 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. *)
(* *)
(**************************************************************************)
(** Helper module for adding specialised arguments to sets of closures. *)
module Definition : sig
type t =
| Existing_inner_free_var of Variable.t
| Projection_from_existing_specialised_arg of Projection.t
end
module What_to_specialise : sig
type t
val create
: set_of_closures:Flambda.set_of_closures
-> t
val new_specialised_arg
: t
-> fun_var:Variable.t
-> group:Variable.t
-> definition:Definition.t (* [projecting_from] "existing inner vars" *)
-> t
end
module type S = sig
val pass_name : string
val variable_suffix : string
val what_to_specialise
: env:Inline_and_simplify_aux.Env.t
-> set_of_closures:Flambda.set_of_closures
-> What_to_specialise.t
end
module Make (T : S) : sig
val rewrite_set_of_closures
: env:Inline_and_simplify_aux.Env.t
-> set_of_closures:Flambda.set_of_closures
-> (Flambda.expr * Inlining_cost.Benefit.t) option
end