jon.recoil.org

Module Flambda2_term_basics.Rec_info_expr

include module type of struct include Flambda2_identifiers.Int_ids.Rec_info_expr end
type t = private Flambda2_identifiers.Int_ids.Rec_info_expr.t =
  1. | Const of {
    1. depth : int Flambda2_numbers.Or_infinity.t;
    2. unrolling : Unrolling_state.t;
    }
  2. | Var of Flambda2_term_basics.Rec_info_expr.variable
    (*

    A variable of kind Flambda_kind.rec_info.

    *)
  3. | Succ of Flambda2_term_basics.Rec_info_expr.t
    (*

    The next depth. If we inline an occurrence with depth d, then in the inlined body, recursive references will have depth succ d.

    *)
  4. | Unroll_to of int * Flambda2_term_basics.Rec_info_expr.t
    (*

    Indicate the depth to which unrolling should proceed. The unroll depth is decremented by Succ until it reaches zero, at which point all unrolling should stop.

    *)

An expression for the state of recursive inlining at a given occurrence. Forms the right-hand side of a Let_expr binding for a depth variable.

val is_obviously_initial : Flambda2_term_basics.Rec_info_expr.t -> bool
include Flambda2_nominal.Contains_names.S with type t := Flambda2_term_basics.Rec_info_expr.t

Compute the free names of a term. Such computation covers all kinds of bindable names (variables, continuations, ...)

include Flambda2_nominal.Contains_ids.S with type t := Flambda2_term_basics.Rec_info_expr.t

Gather all table identifiers to export them.