Module Inlining_transforms
Source code transformations used during inlining.
val inline_by_copying_function_body : env:Inline_and_simplify_aux.Env.t -> r:Inline_and_simplify_aux.Result.t -> lhs_of_application:Variable.t -> inline_requested:Lambda.inline_attribute -> specialise_requested:Lambda.specialise_attribute -> closure_id_being_applied:Closure_id.t -> function_decl:Simple_value_approx.function_declaration -> function_body:Simple_value_approx.function_body -> fun_vars:Variable.Set.t -> args:Variable.t list -> dbg:Debuginfo.t -> simplify:Inlining_decision_intf.simplify -> Flambda.t * Inline_and_simplify_aux.Result.tInline a function by substituting its body (which may be subject to further transformation) at a call site. The function's declaration is not copied.
This transformation is used when:
- inlining a call to a non-recursive function;
- inlining a call, within a recursive or mutually-recursive function, to the same or another function being defined simultaneously ("unrolling"). The maximum depth of unrolling is bounded (see
E.unrolling_allowed).
In both cases, the body of the function is copied, within a sequence of
lets that bind the function parameters, the variables "bound by the closure" (see flambda.mli), and any function identifiers introduced by the set of closures. These stages are delimited below by comments.As an example, suppose we are inlining the following function:
let f x = x + y ... let p = f, f in (fst p) 42
The call site
(fst p) 42will be transformed to:let clos_id = fst p in (* must eventually yield a closure *) let y = <access to
yinclos_id> in let x' = 42 in let x = x' in x + yWhen unrolling a recursive function we rename the arguments to the recursive call in order to avoid clashes with existing bindings. For example, suppose we are inlining the following call to
f, which lies within its own declaration:let rec f x y = f (fst x) (y + snd x)
This will be transformed to:
let rec f x y = let clos_id = f in (* not used this time, since
fhas no free vars *) let x' = fst x in let y' = y + snd x in f (fst x') (y' + snd x') (* body offwith parameters freshened *)
val inline_by_copying_function_declaration : env:Inline_and_simplify_aux.Env.t -> r:Inline_and_simplify_aux.Result.t -> function_decls:Simple_value_approx.function_declarations -> lhs_of_application:Variable.t -> inline_requested:Lambda.inline_attribute -> closure_id_being_applied:Closure_id.t -> function_decl:Simple_value_approx.function_declaration -> args:Variable.t list -> args_approxs:Simple_value_approx.t list -> invariant_params:Variable.Set.t Variable.Map.t lazy_t -> specialised_args:Flambda.specialised_to Variable.Map.t -> free_vars:Flambda.specialised_to Variable.Map.t -> direct_call_surrogates:Closure_id.t Closure_id.Map.t -> dbg:Debuginfo.t -> simplify:Inlining_decision_intf.simplify -> (Flambda.t * Inline_and_simplify_aux.Result.t) optionInlining of recursive function(s) yields a copy of the functions' definitions (not just their bodies, unlike the non-recursive case) and a direct application of the new body. Note: the function really does need to be recursive (but possibly only via some mutual recursion) to end up in here; a simultaneous binding
that is non-recursiveis not sufficient.